Skip to content

Commit 51b184f

Browse files
recovering missing files
1 parent 543ae01 commit 51b184f

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

.pre-commit-config.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
exclude: "docs|node_modules|migrations|.git|.tox"
2+
default_stages: [commit]
3+
fail_fast: true
4+
5+
repos:
6+
- repo: https://github.com/pre-commit/pre-commit-hooks
7+
rev: v4.0.1
8+
hooks:
9+
- id: trailing-whitespace
10+
- id: end-of-file-fixer
11+
- id: check-yaml
12+
13+
- repo: https://github.com/psf/black
14+
rev: 21.11b1
15+
hooks:
16+
- id: black
17+
18+
- repo: https://github.com/PyCQA/isort
19+
rev: 5.10.1
20+
hooks:
21+
- id: isort
22+
23+
- repo: https://github.com/PyCQA/flake8
24+
rev: 4.0.1
25+
hooks:
26+
- id: flake8
27+
args: ["--config=setup.cfg"]
28+
additional_dependencies: [flake8-isort]
29+
30+
# sets up .pre-commit-ci.yaml to ensure pre-commit dependencies stay up to date
31+
ci:
32+
autoupdate_schedule: weekly
33+
skip: []
34+
submodules: false

.readthedocs.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
3+
sphinx:
4+
configuration: docs/conf.py
5+
6+
build:
7+
image: testing
8+
9+
python:
10+
version: 3.9
11+
install:
12+
- requirements: requirements/local.txt

0 commit comments

Comments
 (0)