Skip to content
Snippets Groups Projects
Commit c512b37a authored by Todd Gamblin's avatar Todd Gamblin
Browse files

format .flake8 more nicely.

parent f1583750
No related branches found
No related tags found
No related merge requests found
# -*- conf -*-
[flake8]
# Descriptions of ignored checks:
# flake8 settings for Spack.
#
# Below we describe which flake8 checks Spack ignores and what the
# rationale is.
#
# Let people line things up nicely:
# - E221: multiple spaces before operator
# - E241: multiple spaces after ‘,’
#
# E221: multiple spaces before operator
# E241: multiple spaces after ‘,’
# F403: disable wildcard import
# F821: undefined name (needed for build commands)
# F999: Undefined undefined name (needed for build commands)
# Spack allows wildcard imports:
# - 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.
#
[flake8]
ignore = E221,E241,F403,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