pyproject.toml 418 B

12345678910111213141516171819202122
  1. # See PEP 518 for the spec of this file
  2. # https://www.python.org/dev/peps/pep-0518/
  3. [tool.black]
  4. line-length = 120
  5. target_version = ['py310', 'py311', 'py312']
  6. skip-string-normalization = true
  7. [tool.isort]
  8. profile = "black"
  9. [tool.pylint]
  10. max-line-length = 120
  11. [tool.pyright]
  12. include = ["netbox"]
  13. exclude = [
  14. "**/node_modules",
  15. "**/__pycache__",
  16. ]
  17. reportMissingImports = true
  18. reportMissingTypeStubs = false