Skip to content

Commit e43c53a

Browse files
committed
Update .flake8
1 parent 1f96eb3 commit e43c53a

File tree

1 file changed

+6
-21
lines changed

1 file changed

+6
-21
lines changed

.flake8

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
[flake8]
22
max-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
103
per-file-ignores =
114
# F401: Module imported but unused
125
__init__.py:F401
@@ -21,22 +14,14 @@ enable-extensions = TC, TC1
2114
type-checking-exempt-modules = typing, typing-extensions
2215
eradicate-whitelist-extend = ^-.*;
2316
extend-ignore =
17+
# E501: Line too long
18+
E501,
19+
# E203: Whitespace before ':'
20+
E203,
2421
# SIM106: Handle error-cases first
2522
SIM106,
2623
extend-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/*,

0 commit comments

Comments
 (0)