From 8096a1ba53dbf1b34684b3290be99e8fecc36d81 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 16 Feb 2024 03:03:46 -0500 Subject: Remove invalid linter rules --- .flake8 | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to '.flake8') diff --git a/.flake8 b/.flake8 index cc9a2cf..13081b5 100644 --- a/.flake8 +++ b/.flake8 @@ -3,10 +3,7 @@ # * W503 (line break before binary operator): Black moves these to new lines # * E501 (line too long): Long lines are a fact of life in comment blocks; Black handles active instances of this # * E203 (whitespace before ':'): Black recommends this as disabled -# * F403 (import * used; unable to detect undefined names): We use a wildcard for helpers -# * F405 (possibly undefined name): We use a wildcard for helpers -ignore = W503, E501, F403, F405 +ignore = W503, E501 extend-ignore = E203 # Set the max line length to 88 for Black max-line-length = 88 - -- cgit