File tree Expand file tree Collapse file tree 1 file changed +6
-21
lines changed
Expand file tree Collapse file tree 1 file changed +6
-21
lines changed Original file line number Diff line number Diff line change 11[flake8]
22max-line-length = 88
3- ignore =
4- # E501: Line too long
5- E501,
6- # E203: Whitespace before ':'
7- E203,
8- # W503: Line break occurred before a binary operator
9- W503
103per-file-ignores =
114 # F401: Module imported but unused
125 __init__.py:F401
@@ -21,22 +14,14 @@ enable-extensions = TC, TC1
2114type-checking-exempt-modules = typing, typing-extensions
2215eradicate-whitelist-extend = ^-.*;
2316extend-ignore =
17+ # E501: Line too long
18+ E501,
19+ # E203: Whitespace before ':'
20+ E203,
2421 # SIM106: Handle error-cases first
2522 SIM106,
2623extend-exclude =
2724 # External to the project's coding standards:
2825 docs/*,
29- exclude =
30- .git
31- __pycache__
32- setup.py
33- build
34- dist
35- releases
36- .idea
37- .venv
38- .tox
39- .mypy_cache
40- .pytest_cache
41- .vscode
42- .github
26+ # Machine-generated, too many false-positives
27+ pendulum/locales/*,
You can’t perform that action at this time.
0 commit comments