@@ -7,111 +7,111 @@ ignore =
7
7
# Found in https://github.com/psf/black/issues/429
8
8
# Line too long.
9
9
B950,
10
- # Indentation is not a multiple of four.
11
- E111,
10
+ # Indentation is not a multiple of four.
11
+ E111,
12
12
# Expected an indented block (comment).
13
- E115,
13
+ E115,
14
14
# Over-indented.
15
15
E117,
16
- # Continuation line under-indented for hanging indent.
16
+ # Continuation line under-indented for hanging indent.
17
17
E121,
18
- # Continuation line missing indentation or outdented.
18
+ # Continuation line missing indentation or outdented.
19
19
E122,
20
- # Closing bracket does not match indentation of opening bracket's line.
20
+ # Closing bracket does not match indentation of opening bracket's line.
21
21
E123,
22
- # Closing bracket does not match visual indentation.
22
+ # Closing bracket does not match visual indentation.
23
23
E124,
24
- # Continuation line with same indent as next logical line.
24
+ # Continuation line with same indent as next logical line.
25
25
E125,
26
- # Continuation line over-indented for hanging indent.
26
+ # Continuation line over-indented for hanging indent.
27
27
E126,
28
- # Continuation line over-indented for visual indent.
28
+ # Continuation line over-indented for visual indent.
29
29
E127,
30
- # Continuation line under-indented for visual indent.
30
+ # Continuation line under-indented for visual indent.
31
31
E128,
32
- # Visually indented line with same indent as next logical line.
32
+ # Visually indented line with same indent as next logical line.
33
33
E129,
34
- # Continuation line unaligned for hanging indent.
34
+ # Continuation line unaligned for hanging indent.
35
35
E131,
36
- # Whitespace after '('.
36
+ # Whitespace after '('.
37
37
E201,
38
- # Whitespace before ')'.
38
+ # Whitespace before ')'.
39
39
E202,
40
- # Whitespace before ':'.
40
+ # Whitespace before ':'.
41
41
E203,
42
- # Multiple spaces before operator.
42
+ # Multiple spaces before operator.
43
43
E221,
44
- # Multiple spaces after operator.
44
+ # Multiple spaces after operator.
45
45
E222,
46
- # Missing whitespace around operator.
46
+ # Missing whitespace around operator.
47
47
E225,
48
- # Missing whitespace around arithmetic operator.
48
+ # Missing whitespace around arithmetic operator.
49
49
E226,
50
- # Missing whitespace around bitwise or shift operator.
50
+ # Missing whitespace around bitwise or shift operator.
51
51
E227,
52
- # Missing whitespace after ',', ';', or ':'.
52
+ # Missing whitespace after ',', ';', or ':'.
53
53
E231,
54
- # Multiple spaces after ','.
54
+ # Multiple spaces after ','.
55
55
E241,
56
- # Unexpected spaces around keyword / parameter equals.
56
+ # Unexpected spaces around keyword / parameter equals.
57
57
E251,
58
- # Missing whitespace around parameter equals.
58
+ # Missing whitespace around parameter equals.
59
59
E252,
60
- # At least two spaces before inline comment.
61
- E261,
60
+ # At least two spaces before inline comment.
61
+ E261,
62
62
# Inline comment should start with '# '.
63
- E262,
63
+ E262,
64
64
# Block comment should start with '# '.
65
65
E265,
66
- # Multiple spaces after keyword.
66
+ # Multiple spaces after keyword.
67
67
E271,
68
- # Multiple spaces before keyword.
68
+ # Multiple spaces before keyword.
69
69
E272,
70
- # Expected 1 blank line, found 0.
70
+ # Expected 1 blank line, found 0.
71
71
E301,
72
- # Expected 2 blank lines, found 0.
72
+ # Expected 2 blank lines, found 0.
73
73
E302,
74
- # Too many blank lines (3).
74
+ # Too many blank lines (3).
75
75
E303,
76
- # Expected 2 blank lines after end of function or class.
76
+ # Expected 2 blank lines after end of function or class.
77
77
E305,
78
- # Expected 1 blank line before a nested definition.
78
+ # Expected 1 blank line before a nested definition.
79
79
E306,
80
- # Line too long (82 > 79 characters).
80
+ # Line too long (82 > 79 characters).
81
81
E501,
82
- # The backslash is redundant between brackets.
82
+ # The backslash is redundant between brackets.
83
83
E502,
84
- # Multiple statements on one line (colon).
84
+ # Multiple statements on one line (colon).
85
85
E701,
86
- # Multiple statements on one line (semicolon).
86
+ # Multiple statements on one line (semicolon).
87
87
E702,
88
- # Statement ends with a semicolon.
88
+ # Statement ends with a semicolon.
89
89
E703,
90
- # Multiple statements on one line (def).
90
+ # Multiple statements on one line (def).
91
91
E704,
92
- # Trailing whitespace.
92
+ # Trailing whitespace.
93
93
W291,
94
- # No newline at end of file.
94
+ # No newline at end of file.
95
95
W292,
96
- # Blank line contains whitespace.
96
+ # Blank line contains whitespace.
97
97
W293,
98
- # Blank line at end of file.
98
+ # Blank line at end of file.
99
99
W391,
100
- # Line break occurred after a binary operator.
101
- W504,
100
+ # Line break occurred after a binary operator.
101
+ W504,
102
102
103
103
# Too opinionated.
104
104
# Block comment should start with '# '.
105
105
E265,
106
- # Too many leading '#' for block comment.
106
+ # Too many leading '#' for block comment.
107
107
E266,
108
- # Module level import not at top of file. (Use cases like demandimport https://fburl.com/demandimport require statements before imports)
109
- E402,
108
+ # Module level import not at top of file. (Use cases like demandimport https://fburl.com/demandimport require statements before imports)
109
+ E402,
110
110
# Do not use bare except, specify exception instead. (Duplicate of B001)
111
- E722,
111
+ E722,
112
112
# (Duplicate of B003)
113
- P207,
113
+ P207,
114
114
# (Duplicate of C403)
115
115
P208,
116
116
# Line break occurred before a binary operator.
117
- W503
117
+ W503
0 commit comments