tomaae.homeassistant-mikrot.../setup.cfg
2019-12-06 01:16:02 +01:00

21 lines
547 B
INI

[flake8]
ignore = W293, # blank line contains whitespace
max-line-length = 220
max-complexity = 10
exclude = ./.git,
./tests,
./.github,
__pycache__,
./docs
# Run with: pylint --rcfile=setup.cfg --load-plugins=pylint.extensions.mccabe custom_components
[pylint]
disable = duplicate-code,
too-many-public-methods,
useless-return,
import-error,
too-many-arguments,
too-many-instance-attributes,
simplifiable-if-expression,
#bare-except,