mirror of https://github.com/ArduPilot/ardupilot
16 lines
228 B
TOML
16 lines
228 B
TOML
|
[tool.isort]
|
||
|
profile = "black"
|
||
|
skip = ["./modules/", "./build/"]
|
||
|
|
||
|
[tool.black]
|
||
|
line-length = 120
|
||
|
|
||
|
[tool.mypy]
|
||
|
ignore_missing_imports = true
|
||
|
exclude = [
|
||
|
'modules/',
|
||
|
'build/',
|
||
|
'cmake-build-debug/',
|
||
|
'/setup\.py$'
|
||
|
]
|