mirror of
https://github.com/esphome/esphome-flasher.git
synced 2024-11-15 10:45:29 +01:00
15 lines
280 B
INI
15 lines
280 B
INI
|
[flake8]
|
||
|
max-line-length = 120
|
||
|
# Following 4 for black compatibility
|
||
|
# E501: line too long
|
||
|
# W503: Line break occurred before a binary operator
|
||
|
# E203: Whitespace before ':'
|
||
|
# D202 No blank lines allowed after function docstring
|
||
|
|
||
|
ignore =
|
||
|
E501,
|
||
|
W503,
|
||
|
E203,
|
||
|
D202,
|
||
|
|