Remove invalid linter rules
This commit is contained in:
5
.flake8
5
.flake8
@@ -3,10 +3,7 @@
|
|||||||
# * W503 (line break before binary operator): Black moves these to new lines
|
# * W503 (line break before binary operator): Black moves these to new lines
|
||||||
# * E501 (line too long): Long lines are a fact of life in comment blocks; Black handles active instances of this
|
# * E501 (line too long): Long lines are a fact of life in comment blocks; Black handles active instances of this
|
||||||
# * E203 (whitespace before ':'): Black recommends this as disabled
|
# * E203 (whitespace before ':'): Black recommends this as disabled
|
||||||
# * F403 (import * used; unable to detect undefined names): We use a wildcard for helpers
|
ignore = W503, E501
|
||||||
# * F405 (possibly undefined name): We use a wildcard for helpers
|
|
||||||
ignore = W503, E501, F403, F405
|
|
||||||
extend-ignore = E203
|
extend-ignore = E203
|
||||||
# Set the max line length to 88 for Black
|
# Set the max line length to 88 for Black
|
||||||
max-line-length = 88
|
max-line-length = 88
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user