Use just one flake8 file; mark package.py files to avoid E501 w/url.

This commit is contained in:
Todd Gamblin
2016-05-11 01:16:41 -07:00
parent 2aa4387eba
commit d7847ff768
3 changed files with 3 additions and 12 deletions

View File

@@ -1,10 +0,0 @@
# -*- conf -*-
[flake8]
# Descriptions of ignored checks:
#
# E221: multiple spaces before operator
# E241: multiple spaces after ,
# F403: disable wildcard import
#
ignore = E221,E241,F403
max-line-length = 79

View File

@@ -1,11 +0,0 @@
# -*- conf -*-
[flake8]
# Descriptions of ignored checks:
#
# E221: multiple spaces before operator
# E241: multiple spaces after ,
# F403: disable wildcard import
# F821: undefined name (needed for build commands)
#
ignore = E221,E241,F403,F821
max-line-length = 79