forked from textcortex/JSON-DOC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.flake8
More file actions
128 lines (128 loc) · 3.53 KB
/
.flake8
File metadata and controls
128 lines (128 loc) · 3.53 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[flake8]
max-line-length = 88
max-complexity = 15
extend-ignore =
# E101: Indentation contains mixed spaces and tabs
E101
# E111: Indentation is not a multiple of four
E111
# E112: Expected an indented block
E112
# E113: Unexpected indentation
E113
# E114: Indentation is not a multiple of four (comment)
E114
# E115: Expected an indented block (comment)
E115
# E116: Unexpected indentation (comment)
E116
# E117: Over-indented
E117
# E121: Continuation line under-indented for hanging indent
E121
# E122: Continuation line missing indentation or outdented
E122
# E123: Closing bracket does not match indentation of opening bracket's line
E123
# E124: Closing bracket does not match visual indentation
E124
# E125: Continuation line with same indent as next logical line
E125
# E126: Continuation line over-indented for hanging indent
E126
# E127: Continuation line over-indented for visual indent
E127
# E128: Continuation line under-indented for visual indent
E128
# E129: Visually indented line with same indent as next logical line
E129
# E131: Continuation line unaligned for hanging indent
E131
# E133: Closing bracket is missing indentation
E133
# E201: Whitespace after '('
E201,
# E202: Whitespace before ')'
E202,
# E203: Whitespace before ':'
E203,
# E211: Whitespace before '('
E211,
# E221: Multiple spaces before operator
E221,
# E222: Multiple spaces after operator
E222,
# E223: Tab before operator
E223,
# E224: Tab after operator
E224,
# E225: Missing whitespace around operator
E225,
# E226: Missing whitespace around arithmetic operator
E226,
# E227: Missing whitespace around bitwise or shift operator
E227,
# E228: Missing whitespace around modulo operator
E228,
# E231: Missing whitespace after ',', ';', or ':'
E231,
# E241: Multiple spaces after ','
E241,
# E242: Tab after ','
E242,
# E251: Unexpected spaces around keyword / parameter equals
E251,
# E261: At least two spaces before inline comment
E261,
# E262: Inline comment should start with '# '
E262,
# E265: Block comment should start with '# '
E265,
# E266: Too many leading '#' for block comment
E266,
# E271: Multiple spaces after keyword
E271,
# E272: Multiple spaces before keyword
E272,
# E273: Tab after keyword
E273,
# E274: Tab before keyword
E274,
# E275: Missing whitespace after keyword
E275,
# E301: Expected 1 blank line, found 0
E301,
# E302: Expected 2 blank lines, found 0
E302,
# E303: Too many blank lines (3)
E303,
# E304: Blank lines found after function decorator
E304,
# E305: Expected 2 blank lines after end of function or class
E305,
# E306: Expected 1 blank line before a nested definition
E306,
# E401: Multiple imports on one line
E401,
# E704: multiple statements on one line (def)
E704,
# E203: whitespace before ':'
E203,
# W191: Indentation contains tabs
W191,
# W291: Trailing whitespace
W291,
# W292: No newline at end of file
W292,
# W293: Blank line contains whitespace
W293,
# W391: Blank line at end of file
W391,
# W503: line break before binary operator
W503,
# W504: line break after binary operator
W504,
# F401: imported but unused
F401,
# F841: local variable is assigned to but never used
F841