You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
489 B
Plaintext
11 lines
489 B
Plaintext
4 weeks ago
|
[flake8]
|
||
|
# https://lintlyci.github.io/Flake8Rules/
|
||
|
# E231 missing whitespace after ','
|
||
|
# E266 Too many leading '#' for block comment
|
||
|
# E501 Line too long (82 > 79 characters)
|
||
|
# W503 Line break occurred before a binary operator <- This one is flipping to the reverse as best-practice, which is how Black currently formats
|
||
|
# W605 Invalid escape sequence 'x'
|
||
|
ignore = E203, E231, E266, E501, W503, W605, E704
|
||
|
max-line-length = 100
|
||
|
exclude = .git, .venv, __pycache__, docs, gitlab-ci-includes
|