diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2024-12-15 18:48:28 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2024-12-15 18:48:28 +0000 |
commit | eb74940ca81a6e900dec2b7c8df00245c6bb9a71 (patch) | |
tree | 37baaeba65b6a4874041eac8ec3a1cefc778eeda /pyproject.toml | |
parent | 5475a0b853e4527b4813cbaabbea88bcc7584843 (diff) | |
download | troggle-eb74940ca81a6e900dec2b7c8df00245c6bb9a71.tar.gz troggle-eb74940ca81a6e900dec2b7c8df00245c6bb9a71.tar.bz2 troggle-eb74940ca81a6e900dec2b7c8df00245c6bb9a71.zip |
ruff config
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/pyproject.toml b/pyproject.toml index 1f69db2..1b07fa1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,12 @@ -[tool.black] -line-length = 120 - -[tool.isort] -profile = 'black' -line-length=120 +# Do not edit pyproject.toml, it is overwritten. +# Instead, edit dev.toml and/or server.toml [tool.ruff] +# https://docs.astral.sh/ruff/configuration/ +# we do not use black or isort, we use ruff instead line-length=120 -ignore = ["E402"] +lint.ignore = ["E402", "F541"] + [project] name = "troggle" @@ -26,8 +25,6 @@ dev = [ "unidecode>=1.3.8", "black>=24.10.0", "coverage>=7.6.9", - "deptry>=0.21.1", - "isort>=5.13.2", ] # conlficting groups not implemented in uv yet |