From 08d0cec7391708b15db2b581cf707a39fb1308d9 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 10 Nov 2021 16:52:23 -0800 Subject: lint: disallow 'import *' even in tests --- .flake8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.flake8') 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 -- cgit v1.2.3