netbox-acls/pyproject.toml
Ryan Merolle 108fbb6751
NetBox 3.5 Support (#148)
* NetBox 3.5 updates
2023-06-23 14:41:42 -04:00

24 lines
347 B
TOML

[tool.black]
line-length = 140
[tool.isort]
profile = "black"
include_trailing_comma = true
multi_line_output = 3
[tool.pylint]
max-line-length = 140
[tool.pyright]
include = ["netbox_secrets"]
exclude = [
"**/node_modules",
"**/__pycache__",
]
reportMissingImports = true
reportMissingTypeStubs = false
[tool.ruff]
line-length = 140