a750237532
Rules N813 and N814 prevented import statements like this: xml.etree.ElementTree as et xml.etree.ElementTree as ET But both of those seem pretty reasonable. We see no reason to require any camelcase import to be imported "as" a camelcase word.
32 lines
947 B
INI
32 lines
947 B
INI
# -*- conf -*-
|
|
# flake8 settings for Spack core files.
|
|
#
|
|
# These exceptions are for Spack core files. We're slightly more lenient
|
|
# with packages. See .flake8_packages for that.
|
|
#
|
|
# E1: Indentation
|
|
# - E129: visually indented line with same indent as next logical line
|
|
#
|
|
# E2: Whitespace
|
|
# - E221: multiple spaces before operator
|
|
# - E241: multiple spaces after ','
|
|
# - E272: multiple spaces before keyword
|
|
#
|
|
# E7: Statement
|
|
# - E731: do not assign a lambda expression, use a def
|
|
#
|
|
# W5: Line break warning
|
|
# - W503: line break before binary operator
|
|
# - W504: line break after binary operator
|
|
#
|
|
# These are required to get the package.py files to test clean:
|
|
# - F999: syntax error in doctest
|
|
#
|
|
# N8: PEP8-naming
|
|
# - N801: class names should use CapWords convention
|
|
# - N813: camelcase imported as lowercase
|
|
# - N814: camelcase imported as constant
|
|
#
|
|
[flake8]
|
|
ignore = E129,E221,E241,E272,E731,W503,W504,F999,N801,N813,N814
|
|
max-line-length = 79
|