diff options
author | 2021-07-17 20:19:07 +0100 | |
---|---|---|
committer | 2021-07-17 20:19:07 +0100 | |
commit | a43e2f38b46fc82b8acafb865b398d8a5480387a (patch) | |
tree | a48c5093499cf6f105482cfbca574ff310b3a76e | |
parent | fix: remove incorrect if from CI (diff) |
fix: add more directories to flake8 excludes
-rw-r--r-- | tox.ini | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,7 +2,8 @@ max-line-length=100 ignore=ANN101,D107,W503 # Don't lint the venv or the CPython cache. -exclude=.venv,__pycache__ +exclude=.cache,.venv,.git,constants.py,__pycache__ +application_import_names=arthur [tool.isort] profile = "black" |