File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments