ardupilot/pyproject.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$'
]