forked from nasa/cape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
28 lines (28 loc) · 849 Bytes
/
.flake8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[flake8]
# Ignored codes:
# W293: blank line contains whitespace
# E226: no white space around arithmetic operators (in default 'ignore' list)
# E241: Multiple space after ':'
# E114: Comment indentation is not a multiple of four
# E221: Multiple spaces before operator
# E701: Multiple statements on one line (colon)
# E731: Don not assign a lambda expression
# E741: Ambiguous variable name
# W391: Blank line at end of file
# W504: Line break after binary operator (in default 'ignore' list)
# N802: Function name should be lowercase
# N806: Variable in function should be lowercase
ignore = W293, E226, E241, E114, E221, E701, E731, E741, W391, W504, N802, N806
# Folders to avoid if used from command line
exclude =
.git
doc
examples
modulefiles
release
samples
sandbox
settings
templates
test
tools