Improve import command
This commit is contained in:
parent
b11cfa03ea
commit
1d6c52325c
30 changed files with 2628 additions and 554 deletions
|
|
@ -17,6 +17,9 @@ dependencies = [
|
|||
"pydantic>=2.12.5",
|
||||
"tqdm>=4.67.1",
|
||||
"colorama>=0.4.6",
|
||||
"django-stubs-ext>=5.2.8",
|
||||
"django-stubs[compatible-mypy]>=5.2.8",
|
||||
"types-pygments>=2.19.0.20251121",
|
||||
]
|
||||
|
||||
[dependency-groups]
|
||||
|
|
@ -27,9 +30,6 @@ DJANGO_SETTINGS_MODULE = "config.settings"
|
|||
python_files = ["test_*.py", "*_test.py"]
|
||||
addopts = ["--reuse-db", "--no-migrations"]
|
||||
|
||||
[tool.pyright]
|
||||
exclude = ["**/migrations/**"]
|
||||
|
||||
[tool.ruff]
|
||||
lint.select = ["ALL"]
|
||||
|
||||
|
|
@ -76,7 +76,7 @@ lint.ignore = [
|
|||
preview = true
|
||||
unsafe-fixes = true
|
||||
fix = true
|
||||
line-length = 160
|
||||
line-length = 120
|
||||
|
||||
[tool.ruff.lint.per-file-ignores]
|
||||
"**/tests/**" = [
|
||||
|
|
@ -94,3 +94,9 @@ line-length = 160
|
|||
[tool.djlint]
|
||||
profile = "django"
|
||||
ignore = "H021"
|
||||
|
||||
[tool.mypy]
|
||||
plugins = ["mypy_django_plugin.main"]
|
||||
|
||||
[tool.django-stubs]
|
||||
django_settings_module = "config.settings"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue