lib.itmens/pyproject.toml

24 lines
596 B
TOML
Raw Normal View History

2022-12-29 14:30:31 -05:00
[tool.pyright]
2023-08-11 11:55:42 -04:00
exclude = [ "media", ".venv", ".git", "playground", "**/tests.py", "neodb", "**/migrations", "**/commands", "**/sites/douban_*" ]
[tool.djlint]
ignore="T002,T003,H006,H019,H020,H021,H023,H030,H031"
indent=2
2023-08-10 14:56:38 -04:00
[tool.isort]
profile = "black"
2023-08-10 17:15:00 -04:00
[tool.mypy]
exclude = [
'^neodb/',
'^legacy/',
]
plugins = ["mypy_django_plugin.main"]
[tool.django-stubs]
django_settings_module = "boofilsic.settings"
2023-08-11 01:43:19 -04:00
[tool.ruff]
ignore = ['E501']
exclude = [ "media", ".venv", ".git", "playground", "**/tests.py", "neodb", "**/migrations", "**/commands", "**/importers", "**/sites", "legacy" ]