aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2023-08-22 15:10:33 +0100
committerGravatar Chris Lovering <[email protected]>2023-08-22 15:10:33 +0100
commitfd9163bbb142b0ddc03af3649010044b14cf49df (patch)
tree7e4f9ee81f5c3f0ded859fab871053b9a73bb780
parentUpdate CI to use reusable workflows and push an image on release (#66) (diff)
Remove unused tox.ini
This is no longer needed as we don't use flake8
-rw-r--r--tox.ini14
1 files changed, 0 insertions, 14 deletions
diff --git a/tox.ini b/tox.ini
deleted file mode 100644
index 15d4c7b..0000000
--- a/tox.ini
+++ /dev/null
@@ -1,14 +0,0 @@
-[flake8]
-max-line-length=120
-application-import-names=metricity
-import-order-style=pycharm
-exclude=alembic,.venv,.cache
-extend-ignore=
- # self params in classes.
- ANN101,
- # args and kwargs
- ANN002, ANN003,
- # line break before/after binary operator
- W503, W504,
- # __init__ doc strings
- D107