Skip to content
Snippets Groups Projects
Commit c6aa32bb authored by Adam J. Stewart's avatar Adam J. Stewart
Browse files

Some flake8 settings weren't documented

parent 732c1985
No related branches found
No related tags found
No related merge requests found
......@@ -5,8 +5,10 @@
# rationale is.
#
# Let people line things up nicely:
# - E129: visually indented line with same indent as next logical line
# - E221: multiple spaces before operator
# - E241: multiple spaces after ‘,’
# - E241: multiple spaces after ','
# - E272: multiple spaces before keyword
#
# Let people use terse Python features:
# - E731 : lambda expressions
......@@ -15,9 +17,10 @@
# - F403: disable wildcard import
#
# These are required to get the package.py files to test clean.
# - F821: undefined name (needed for cmake, configure, etc.)
# - F999: name name be undefined or undefined from star imports.
# - F405: `name` may be undefined, or undefined from star imports: `module`
# - F821: undefined name `name` (needed for cmake, configure, etc.)
# - F999: syntax error in doctest
#
[flake8]
ignore = E129,E221,E241,E272,E731,F403,F821,F999,F405
ignore = E129,E221,E241,E272,E731,F403,F405,F821,F999
max-line-length = 79
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