2016-05-11 06:45:41 +00:00
|
|
|
|
# -*- 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)
|
2016-05-11 08:16:41 +00:00
|
|
|
|
# F999: Undefined undefined name (needed for build commands)
|
2016-05-11 06:45:41 +00:00
|
|
|
|
#
|
2016-05-11 08:16:41 +00:00
|
|
|
|
ignore = E221,E241,F403,F821,F999
|
2016-05-11 06:45:41 +00:00
|
|
|
|
max-line-length = 79
|