Skip to content

Commit

Permalink
Sort tool sections alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelad committed Apr 24, 2023
1 parent cd7779f commit 5802f77
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ omit = [
"*/wsgi.py",
]

[tool.django-stubs]
django_settings_module = "fakester.settings"

[tool.interrogate]
ignore-init-module = true
ignore-nested-classes = true
Expand All @@ -28,6 +31,21 @@ src_paths = ["src"]
known_django = "django"
sections = "FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"

[tool.mypy]
python_version = "3.11"
mypy_path = "src"
plugins = ["mypy_django_plugin.main"]
exclude = ["migrations"]

[[tool.mypy.overrides]]
module = [
"crispy_forms.*",
"decouple",
"django_ratelimit.decorators",
"ipware",
]
ignore_missing_imports = true

[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra --cov --import-mode=importlib --verbose"
Expand Down Expand Up @@ -67,21 +85,3 @@ extend-exclude = ["migrations"]

[tool.ruff.pydocstyle]
convention = "google"

[tool.mypy]
python_version = "3.11"
mypy_path = "src"
plugins = ["mypy_django_plugin.main"]
exclude = ["migrations"]

[[tool.mypy.overrides]]
module = [
"crispy_forms.*",
"decouple",
"django_ratelimit.decorators",
"ipware",
]
ignore_missing_imports = true

[tool.django-stubs]
django_settings_module = "fakester.settings"

0 comments on commit 5802f77

Please sign in to comment.