CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/pyproject.toml
Views: 1798
1
[tool.isort]
2
profile = "black"
3
skip = ["./modules/", "./build/"]
4
5
[tool.black]
6
line-length = 120
7
skip-string-normalization = true
8
9
[tool.mypy]
10
ignore_missing_imports = true
11
exclude = [
12
'modules/',
13
'build/',
14
'cmake-build-debug/',
15
'/setup\.py$'
16
]
17
18