diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml index 963545e..5ad2d34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ pydis-core = "9.5.1" pydantic = {extras = ["dotenv"], version = "1.10.7"} loguru = "0.7.0" -kubernetes_asyncio = "24.2.2" +kubernetes_asyncio = "24.2.3" tabulate = {extras = ["widechars"], version = "0.9.0"} jishaku = "2.5.1" @@ -22,12 +22,14 @@ black = "23.3.0" isort = "5.12.0" taskipy = "1.10.4" ruff = "0.0.264" +pre-commit = "3.3.1" [tool.taskipy.tasks] start = "python -m arthur" -lint = "ruff" +lint = "pre-commit run --all-files" format = "black arthur" +precommit = "pre-commit install" [build-system] requires = ["poetry-core>=1.0.0"] @@ -56,4 +58,4 @@ ignore = [ "SIM102", "SIM108", ] line-length = 100 -select = ["ANN", "B", "C4", "D", "DTZ", "E", "F", "ISC", "INT", "N", "PGH", "PIE", "Q", "RET", "RSE", "RUF", "S", "SIM", "T20", "TID", "UP", "W"]
\ No newline at end of file +select = ["ANN", "B", "C4", "D", "DTZ", "E", "F", "ISC", "INT", "N", "PGH", "PIE", "Q", "RET", "RSE", "RUF", "S", "SIM", "T20", "TID", "UP", "W"] |