File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # See https://pre-commit.com for more information
2+ # See https://pre-commit.com/hooks.html for more hooks
3+
4+ repos :
5+ - repo : https://github.com/pre-commit/pre-commit-hooks
6+ rev : v3.2.0
7+ hooks :
8+ - id : trailing-whitespace
9+ - id : end-of-file-fixer
10+ - id : check-yaml
11+ - id : check-json
12+ types : [file] # override `types: [json]`
13+ files : \.(json|ipynb)$
14+ - repo : https://github.com/psf/black
15+ rev : " 22.12.0"
16+ hooks :
17+ - id : black
18+ - repo : https://github.com/asottile/reorder_python_imports
19+ rev : " v3.9.0"
20+ hooks :
21+ - id : reorder-python-imports
22+ - repo : https://github.com/pycqa/flake8
23+ rev : " 6.0.0"
24+ hooks :
25+ - id : flake8
26+ language_version : python3
Original file line number Diff line number Diff line change @@ -2,16 +2,24 @@ alabaster==0.7.12
22Babel==2.11.0
33beautifulsoup4==4.11.1
44certifi==2022.12.7
5+ cfgv==3.3.1
56charset-normalizer==2.1.1
7+ distlib==0.3.6
68docutils==0.17.1
9+ filelock==3.9.0
710furo==2022.9.29
11+ identify==2.5.12
812idna==3.4
913imagesize==1.4.1
1014Jinja2==3.1.2
1115MarkupSafe==2.1.1
16+ nodeenv==1.7.0
1217packaging==22.0
18+ platformdirs==2.6.2
19+ pre-commit==2.21.0
1320Pygments==2.14.0
1421pytz==2022.7
22+ PyYAML==6.0
1523requests==2.28.1
1624snowballstemmer==2.2.0
1725soupsieve==2.3.2.post1
@@ -27,3 +35,4 @@ sphinxcontrib-qthelp==1.0.3
2735sphinxcontrib-serializinghtml==1.1.5
2836sphinxext-opengraph==0.7.5
2937urllib3==1.26.13
38+ virtualenv==20.17.1
Original file line number Diff line number Diff line change 1+ -r requirements.txt
2+
3+ pre-commit
You can’t perform that action at this time.
0 commit comments