-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
flake8 passes #1925
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
flake8 passes #1925
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,9 @@ linters: | |
| flake8: | ||
| max-line-length: 79 | ||
| fixer: true | ||
| ignore: I002 | ||
| exclude: | ||
| - 'doc/' | ||
| py3k: | ||
| fixers: | ||
| enable: true | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,3 +6,6 @@ python_files=test_*.py | |
|
|
||
| [flake8] | ||
| max-line-length=79 | ||
| ignore=I002 | ||
| exclude= | ||
| doc/ | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add this configuration to the
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good idea, done
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like this didn't actually work to ignore the doc directories -- see all the Stickler messages in #1930 |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
W1619 division w/o future statement