summaryrefslogtreecommitdiffstats
path: root/.flake8
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-11-10 16:52:23 -0800
committerBryan Newbold <bnewbold@archive.org>2021-11-10 16:52:23 -0800
commit08d0cec7391708b15db2b581cf707a39fb1308d9 (patch)
treec24912777388d388cdf050086793259e42924816 /.flake8
parentc164970449a392b5165d903d213c2bb51f2a187f (diff)
downloadfatcat-scholar-08d0cec7391708b15db2b581cf707a39fb1308d9.tar.gz
fatcat-scholar-08d0cec7391708b15db2b581cf707a39fb1308d9.zip
lint: disallow 'import *' even in tests
Diffstat (limited to '.flake8')
-rw-r--r--.flake82
1 files changed, 1 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index 96345cd..62947b1 100644
--- a/.flake8
+++ b/.flake8
@@ -9,7 +9,7 @@ select = C,E,F,W,ANN
ignore = ANN003,ANN101,ANN204,E265,E266,E501,W503,E203
per-file-ignores =
fatcat_scholar/__init__.py: F401
- tests/*.py: ANN201,ANN001,F403,F405
+ tests/*.py: ANN201,ANN001
exclude = .git,__pycache__,.venv
max-line-length = 88
max-complexity = 30