Skip to content
Snippets Groups Projects
Commit 0e3f37ce authored by Robert Bruntz's avatar Robert Bruntz
Browse files

Updates .flake8 for longer line length and to use EXE and S

parent 99368aa0
No related branches found
No related tags found
1 merge request!122Updates .flake8 for longer line length and to use EXE and S
Pipeline #594859 passed
; vim: set ft=dosini :
[flake8]
max-line-length = 120
select =
# pycodestyle errors
E,
# flake8-executable - https://pypi.org/project/flake8-executable/
EXE,
# pyflakes
F,
# bandit security
# bandit security - https://pypi.org/project/flake8-bandit/
S,
# pycodestyle warnings
W,
ignore =
# line break before binary operator, use W504
# W503 = warn about "line break before binary operator"
# W504 = warn about "line break after binary operator"
# ignore W503 = allow W503, not W504
# see https://peps.python.org/pep-0008/#should-a-line-break-before-or-after-a-binary-operator
W503,
exclude =
__pycache__,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment