Syntax errors
This commit is contained in:
parent
2494211ef2
commit
58d136c0bd
1 changed files with 20 additions and 15 deletions
35
setup.cfg
35
setup.cfg
|
@ -7,11 +7,12 @@ lines_after_imports = 2
|
||||||
default_section = THIRDPARTY
|
default_section = THIRDPARTY
|
||||||
known_localfolder = datalog
|
known_localfolder = datalog
|
||||||
sections = [
|
sections = [
|
||||||
FUTURE,
|
FUTURE,
|
||||||
STDLIB,
|
STDLIB,
|
||||||
LOCALFOLDER,
|
LOCALFOLDER,
|
||||||
THIRDPARTY,
|
THIRDPARTY,
|
||||||
]
|
]
|
||||||
|
|
||||||
force_sort_within_sections = 1
|
force_sort_within_sections = 1
|
||||||
force_alphabetical_sort_within_sections = 1
|
force_alphabetical_sort_within_sections = 1
|
||||||
combine_as_imports = 1
|
combine_as_imports = 1
|
||||||
|
@ -20,19 +21,23 @@ combine_as_imports = 1
|
||||||
index-servers = pypi
|
index-servers = pypi
|
||||||
|
|
||||||
[reqman]
|
[reqman]
|
||||||
shitlist = pip,pkg_resources,setuptools
|
shitlist = [
|
||||||
|
pip,
|
||||||
|
pkg_resources,
|
||||||
|
setuptools,
|
||||||
|
]
|
||||||
|
|
||||||
[flake8]
|
[flake8]
|
||||||
extend-ignore = [
|
extend-ignore = [
|
||||||
E203,
|
E203,
|
||||||
E227,
|
E227,
|
||||||
E306,
|
E306,
|
||||||
E501,
|
E501,
|
||||||
E731,
|
E731,
|
||||||
E741,
|
E741,
|
||||||
F403,
|
F403,
|
||||||
F405,
|
F405,
|
||||||
]
|
]
|
||||||
|
|
||||||
[pypi]
|
[pypi]
|
||||||
repository = https://pypi.python.org/pypi
|
repository = https://pypi.python.org/pypi
|
||||||
|
|
Loading…
Reference in a new issue