aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-02-16 03:03:46 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-02-16 03:03:46 -0500
commit8096a1ba53dbf1b34684b3290be99e8fecc36d81 (patch)
treec06e069d87295df19f09139d68d743f3028108ac
parentReformat (Black) and lint (flake8) Python scripts (diff)
downloadjellyfin-packaging-8096a1ba53dbf1b34684b3290be99e8fecc36d81.tar.gz
jellyfin-packaging-8096a1ba53dbf1b34684b3290be99e8fecc36d81.tar.bz2
jellyfin-packaging-8096a1ba53dbf1b34684b3290be99e8fecc36d81.zip
Remove invalid linter rules
-rw-r--r--.flake85
1 files changed, 1 insertions, 4 deletions
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
-
bgstack15