aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2023-03-07 14:35:52 +0000
committerGravatar Chris Lovering <[email protected]>2023-05-04 13:27:53 +0100
commit98c58f35a405eb22cd113b36a82017e679344ea0 (patch)
treee8036e828881316c56dc80a199ac4fc97eb39794 /pyproject.toml
parentAdd pre-commit config (diff)
Add pre-commit as a dev dep and add relevent taskipy tasks
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml6
1 files changed, 4 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 963545e..9f5b8e9 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"]