dotfiles/.flake8

30 lines
597 B
Plaintext
Raw Normal View History

2021-02-05 18:22:22 +00:00
[flake8]
2021-03-27 01:15:58 +00:00
max-line-length = 99
ignore =
2021-02-05 18:22:22 +00:00
# spaces around keywords
E251,
# lambda expressions
E731,
# line break before binary operator
W503,
2021-03-25 15:18:03 +00:00
# line break after binary operator
W504,
2021-02-05 18:22:22 +00:00
# blank line at end of file
W391,
# whitespace around arithmetic operator
E226,
# ambiguous variable name
E741,
per-file-ignores =
2021-03-27 01:15:58 +00:00
__init__.py:
2021-02-05 18:22:22 +00:00
# imported but unused
F401,
# unable to detect undefined names
F403,
# comments should start with space
example.local_settings.py: E265,
exclude = .git,.venv,__pycache__