1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
netbox-community-netbox/pyproject.toml
Arthur Hanson 89dd423080 15676 update python versions in pyproject.toml (#15687)
* 15676 update python versions in pyproject.toml

* 15676 update formatting
2024-04-10 16:36:04 -04:00

23 lines
418 B
TOML

# See PEP 518 for the spec of this file
# https://www.python.org/dev/peps/pep-0518/
[tool.black]
line-length = 120
target_version = ['py310', 'py311', 'py312']
skip-string-normalization = true
[tool.isort]
profile = "black"
[tool.pylint]
max-line-length = 120
[tool.pyright]
include = ["netbox"]
exclude = [
"**/node_modules",
"**/__pycache__",
]
reportMissingImports = true
reportMissingTypeStubs = false