mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
13 lines
280 B
INI
13 lines
280 B
INI
[flake8]
|
|
ignore =
|
|
# H301: one import per line
|
|
H301,
|
|
# H306: imports not in alphabetical order (time, os)
|
|
H306,
|
|
# E226: missing whitespace around arithmetic operator
|
|
E226,
|
|
# E261 at least two spaces before inline comment
|
|
E261
|
|
|
|
max-line-length = 127
|