mirror of
https://github.com/tomaae/homeassistant-mikrotik_router.git
synced 2025-08-02 08:54:31 +02:00
22 lines
612 B
INI
22 lines
612 B
INI
[flake8]
|
|
ignore = W293, # blank line contains whitespace
|
|
|
|
max-line-length = 220
|
|
max-complexity = 10
|
|
exclude = ./.git,
|
|
./tests,
|
|
./.github,
|
|
__pycache__,
|
|
./docs
|
|
./custom_components/mikrotik_router/librouteros_custom
|
|
|
|
# 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,
|