forked from nautobot/nautobot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.flake8
More file actions
16 lines (16 loc) · 718 Bytes
/
.flake8
File metadata and controls
16 lines (16 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[flake8]
ignore =
# E203 whitespace before ':' (per Black, this is actually correct in some cases)
E203,
# F401 module imported but unused (TODO: fix and re-enable this one)
F401,
# F403 'from module import *' used (TODO: fix and re-enable this one)
F403,
# F405 name may be undefined or defined from star imports (TODO: fix and re-enable this one)
F405,
# E501 line greater than 80 characters in length (we use a 120-character line length, enforced by Black)
E501,
# W503 line break before binary operator (per Black, this is actually correct in some cases)
W503,
# W504 line break after binary operator (per Black, this is actually correct in some cases)
W504