forked from duosecurity/duo_log_sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
17 lines (17 loc) · 811 Bytes
/
.flake8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[flake8]
ignore =
W503, # line break before binary operator
E203, # whitespace before :
E261, # two spaces before inline comment
E262, # space between # and inline comment text
E265, # space between # and block comment text
E266, # There Can Be Only One (# preceding a comment)
E302, # two blank lines between functions and classes
E303, # two blank lines between functions and classes; one between methods
E305, # two blank lines after functions and classes
E501, # line too long
E999, # EOL while scanning string literal
F821, # undefined name
F841, # local variable `name` is assigned to but never used
F401, # imported but unused
F403, # unable to detect undefined names