Skip to content
Snippets Groups Projects
Commit a367bc15 authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Ignore conflicting pycodestyle rules with pep8.

parent 063e20bb
No related branches found
No related tags found
No related merge requests found
...@@ -11,4 +11,6 @@ pycodestyle: ...@@ -11,4 +11,6 @@ pycodestyle:
# Ignored errors: # Ignored errors:
# - E501: line too long # - E501: line too long
# - E731: do not assign a lambda expression, use a def # - E731: do not assign a lambda expression, use a def
- pycodestyle --ignore=E501,E731 . # - W504: line break after binary operator (conflicts with old pep8 package)
# - W505: doc line too long
- pycodestyle --ignore=E501,E731,W504,W505 .
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment