mirror of
https://github.com/esphome/esphome-flasher.git
synced 2024-11-15 10:45:29 +01:00
25 lines
478 B
TOML
25 lines
478 B
TOML
|
[tool.isort]
|
||
|
profile = "black"
|
||
|
multi_line_output = 3
|
||
|
|
||
|
[tool.black]
|
||
|
target-version = ['py37']
|
||
|
|
||
|
[tool.pylint.MASTER]
|
||
|
reports = 'no'
|
||
|
disable = [
|
||
|
"too-many-branches",
|
||
|
"missing-function-docstring",
|
||
|
"missing-module-docstring",
|
||
|
"too-many-statements",
|
||
|
"import-outside-toplevel",
|
||
|
"line-too-long",
|
||
|
"missing-class-docstring",
|
||
|
"too-few-public-methods",
|
||
|
"too-many-arguments",
|
||
|
"too-many-instance-attributes",
|
||
|
"too-many-locals",
|
||
|
"unused-argument",
|
||
|
"cyclic-import",
|
||
|
]
|