File tree Expand file tree Collapse file tree 2 files changed +17
-9
lines changed Expand file tree Collapse file tree 2 files changed +17
-9
lines changed
Original file line number Diff line number Diff line change @@ -27,11 +27,19 @@ commands = flake8 pythonforandroid/ tests/ ci/ setup.py
27
27
28
28
[flake8]
29
29
ignore =
30
- E123, # Closing bracket does not match indentation of opening bracket's line
31
- E124, # Closing bracket does not match visual indentation
32
- E126, # Continuation line over-indented for hanging indent
33
- E226, # Missing whitespace around arithmetic operator
34
- E402, # Module level import not at top of file
35
- E501, # Line too long (82 > 79 characters)
36
- W503, # Line break occurred before a binary operator
37
- W504 # Line break occurred after a binary operator
30
+ # Closing bracket does not match indentation of opening bracket's line
31
+ E123,
32
+ # Closing bracket does not match visual indentation
33
+ E124,
34
+ # Continuation line over-indented for hanging indent
35
+ E126,
36
+ # Missing whitespace around arithmetic operator
37
+ E226,
38
+ # Module level import not at top of file
39
+ E402,
40
+ # Line too long (82 > 79 characters)
41
+ E501,
42
+ # Line break occurred before a binary operator
43
+ W503,
44
+ # Line break occurred after a binary operator
45
+ W504
You can’t perform that action at this time.
0 commit comments