2022-12-29 14:30:31 -05:00
|
|
|
[tool.pyright]
|
2023-07-20 21:59:49 -04:00
|
|
|
exclude = [ "media", ".venv", ".git", "playground", "catalog/*/tests.py", "neodb", "**/migrations", "**/sites/douban_*" ]
|
2023-05-20 11:01:18 -04:00
|
|
|
|
|
|
|
[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" ]
|