Skip to content

Commit

Permalink
More whitelisted python style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-zeller committed Aug 27, 2024
1 parent 2c6dde8 commit 2ab915b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion code/pycodestyle.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@
# - W504 line break after binary operator (frequently generated by autopep8)
# - E722 do not use bare 'except' (we use this to illustrate a problem)
# - E30* various blank line counts (generated)
# - E266 too many leading '#' for block comment
# - E702 multiple statements on one line (semicolon)
# - W293 blank line contains whitespace
# - E301 expected 1 blank line, found 0
# - E121 continuation line under-indented for hanging indent
# - E126 continuation line over-indented for hanging indent
# - E127 continuation line over-indented for visual indent
# - E128 continuation line under-indented for visual indent
# = E129 visually indented line with same indent as next logical lin

[pycodestyle]
ignore = W291,E501,E402,W391,E703,W503,W504,E722,E302,E303,E305
ignore = W291,E501,E402,W391,E703,W503,W504,E722,E302,E303,E305,E266,E702,W293,E301,E121,E126,E127,E128,E129

0 comments on commit 2ab915b

Please sign in to comment.