tomaae.homeassistant-mikrot.../setup.cfg

24 lines
554 B
INI
Raw Normal View History

2019-12-02 03:18:11 +01:00
[flake8]
2019-12-02 19:20:34 +01:00
ignore = W293, # blank line contains whitespace
2019-12-02 17:59:30 +01:00
2019-12-02 03:18:11 +01:00
max-line-length = 220
2019-12-02 17:59:30 +01:00
max-complexity = 20
2019-12-02 19:20:34 +01:00
exclude = ./.git,
./tests,
./.github,
__pycache__,
./docs
2019-12-02 03:18:11 +01:00
[pylint]
2019-12-02 17:59:30 +01:00
disable = duplicate-code,
2019-12-02 19:20:34 +01:00
missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
trailing-whitespace,
bare-except,
useless-return,
import-error,
simplifiable-if-expression,
too-many-arguments,
too-many-instance-attributes