summaryrefslogtreecommitdiff
path: root/.flake8_packages
AgeCommit message (Collapse)AuthorFilesLines
2019-01-21Typo fixes in .flake8 comments (#10399)Adam J. Stewart1-4/+6
2018-10-25flake8: explicitly allow line break before or after binary operator (#9627)Massimiliano Culpo1-1/+1
W503 and W504 are issued for line breaks before or after binary operators (respectively). This allows either approach (explicitly instructing flake8 to ignore both of these cases).
2017-10-24flake8: no wildcards in core; only `import *` from spack in packagesTodd Gamblin1-0/+22
There are now separate flake8 configs for core vs. packages: - core has a smaller set of flake8 exceptions - packages allow `from spack import *` and module globals - Allows core to take advantage of static checking for undefined names - Allows packages to keep using Spack tricks like `from spack import *` and dependencies setting globals for dependents.