mirror of
https://github.com/lucaspalomodevelop/netbox-acls.git
synced 2026-03-12 23:27:23 +00:00
24 lines
344 B
TOML
24 lines
344 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_acls"]
|
|
exclude = [
|
|
"**/node_modules",
|
|
"**/__pycache__",
|
|
]
|
|
reportMissingImports = true
|
|
reportMissingTypeStubs = false
|
|
|
|
[tool.ruff]
|
|
line-length = 140
|