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