File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[flake8]
2+ max-line-length = 88
3+ max-complexity = 25
24extend-ignore =
35 A003 # Class attribute is shadowing a python builtin
6+ # Formatting style for `black`
7+ E203 # Whitespace before ':'
8+ W503 # Line break occurred before a binary operator
Original file line number Diff line number Diff line change @@ -35,11 +35,7 @@ repos:
3535 - repo : https://github.com/PyCQA/flake8
3636 rev : 5.0.4
3737 hooks :
38- - id : flake8
39- args :
40- - --ignore=E203,W503
41- - --max-complexity=25
42- - --max-line-length=88
38+ - id : flake8 # See .flake8 for args
4339 additional_dependencies :
4440 - flake8-bugbear
4541 - flake8-builtins
5147 - id : mypy
5248 args :
5349 - --ignore-missing-imports
54- - --install-types # See mirrors-mypy README.md
50+ - --install-types # See mirrors-mypy README.md
5551 - --non-interactive
5652 additional_dependencies : [types-requests]
5753
You can’t perform that action at this time.
0 commit comments