Skip to content
Snippets Groups Projects
Commit ad8bd0c5 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Merge branch 'check/update-pyproject-toml' into 'master'

Update pyproject.toml

See merge request !313
parents f91702f1 c055c1d8
No related branches found
No related tags found
1 merge request!313Update pyproject.toml
Pipeline #156548 canceled
...@@ -59,23 +59,9 @@ chronos = "aleksis.apps.chronos.apps:ChronosConfig" ...@@ -59,23 +59,9 @@ chronos = "aleksis.apps.chronos.apps:ChronosConfig"
[tool.poetry.group.dev.dependencies] [tool.poetry.group.dev.dependencies]
django-stubs = "^4.2" django-stubs = "^4.2"
safety = "^2.3.5" safety = "^2.3.5"
flake8 = "^6.0.0" ruff = "^0.1.5"
flake8-django = "~1.2"
flake8-fixme = "^1.1.1"
flake8-mypy = "^17.8.0"
flake8-bandit = "^4.1.1"
flake8-builtins = "^2.0.0"
flake8-docstrings = "^1.5.0"
flake8-rst-docstrings = "^0.3.0"
black = ">=21.0"
flake8-black = "^0.3.0"
isort = "^5.0.0"
flake8-isort = "^6.0.0"
curlylint = "^0.13.0" curlylint = "^0.13.0"
...@@ -102,6 +88,19 @@ sphinx_material = "^0.0.35" ...@@ -102,6 +88,19 @@ sphinx_material = "^0.0.35"
line-length = 100 line-length = 100
exclude = "/migrations/" exclude = "/migrations/"
[tool.ruff]
exclude = ["migrations", "tests"]
[tool.ruff.lint]
select = ["E", "F", "UP", "B", "SIM", "I", "DJ", "A", "S"]
ignore = ["UP034", "UP015", "B028"]
[tool.ruff.isort]
known-first-party = ["aleksis"]
section-order = ["future", "standard-library", "django", "third-party", "first-party", "local-folder"]
[tool.ruff.isort.sections]
django = ["django"]
[build-system] [build-system]
requires = ["poetry-core>=1.0.0"] requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment