linkchecker/setup.cfg

55 lines
1.4 KiB
INI
Raw Normal View History

[global]
;command_packages = distcmds
[bdist_rpm]
release = 1
2013-01-06 17:10:13 +00:00
packager = Bastian Kleineidam <bastian.kleineidam@web.de>
2012-05-23 20:49:18 +00:00
doc_files = doc/examples/
2012-05-23 19:13:31 +00:00
cgi-bin/lconline/
provides = linkchecker
2012-05-23 19:41:33 +00:00
group = Applications/Internet
install_script = install-rpm.sh
python = python
[bdist_wheel]
universal = 0
2020-05-19 16:24:22 +00:00
2020-05-25 16:32:39 +00:00
[check-manifest]
ignore-bad-ideas = *.mo
ignore = *.rej
2020-05-25 16:32:39 +00:00
2020-05-19 16:24:22 +00:00
[flake8]
filename =
*.py
./linkchecker
builtins =
_
_n
max-line-length = 88
per-file-ignores =
# In several files imports intentionally cause:
# E402: module level import not at top of file
# F401: module imported but unused
linkchecker: E402
setup.py: E402
linkcheck/__init__.py: E402,F401
linkcheck/bookmarks/chrome.py: E402
linkcheck/checker/httpurl.py: E402
linkcheck/htmlutil/htmlsoup.py: E402
linkcheck/parser/__init__.py: E402
tests/__init__.py: F401
2020-05-19 16:24:22 +00:00
extend-ignore =
# https://pep8.readthedocs.org/en/latest/intro.html#error-codes
# these are ignored by default:
# E121: continuation line under-indented for hanging indent
# E123: closing bracket does not match indentation of opening brackets line
# E126: continuation line over-indented for hanging indent
# E133: closing bracket does not match visual indentation
# E226: missing whitespace around arithmetic operator
# E241: multiple spaces after ,
# E242: tab after ,
# E704: multiple statements on one line (def)
# W503: line break before binary operator
# W504: line break after binary operator