forked from jadedjester/aristotle-metadata-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
23 lines (23 loc) · 786 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[flake8]
ignore =
E501, # max line length
E225, # Missing whitespace around operator
E123, # Closing bracket does not match indentation of opening bracket's line
E722, # bare excepts
E731, # If I want a named lambda, I'll have one
F401, # Module imported but unused
F841, # Local variable name is assigned to but never used
F403, #'from module import *' used; unable to detect undefined names
F811, # Redefinition of unused name
F821 # Undefined name
W504 # Line break after binary operator
W605, # We're getting some weird false-positives (check google 'flake8 W605' for more details)
exclude =
migrations,
vendor,
tests,
example_mdr
show_source = True
statistics = True
filename =
*/aristotle_mdr/*.py