21 lines
488 B
INI
21 lines
488 B
INI
# vim: ft=dosini
|
|
|
|
[DEFAULT]
|
|
targets=qutebrowser,scripts
|
|
|
|
[pep257]
|
|
# D102: Docstring missing, will be handled by others
|
|
# D209: Blank line before closing """ (removed from PEP257)
|
|
# D402: First line should not be function's signature (false-positives)
|
|
disable=D102,D209,D402
|
|
exclude=test_.*
|
|
|
|
[pylint]
|
|
args=--output-format=colorized,--reports=no,--rcfile=.pylintrc
|
|
plugins=config,crlf,modeline,settrace,openencoding
|
|
exclude=resources.py
|
|
|
|
[flake8]
|
|
args=--config=.flake8
|
|
exclude=resources.py
|