From 984da3cd234086a0ea488d5bd98bef329fa33f91 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Wed, 4 Jan 2023 14:45:49 +0100 Subject: [PATCH] Adjust flake8 config to be like other jupyterhub projects --- .flake8 | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.flake8 b/.flake8 index 5619889b..2aebc6ea 100644 --- a/.flake8 +++ b/.flake8 @@ -3,10 +3,9 @@ # E: style errors # W: style warnings # C: complexity -# E402: module level import not at top of file -# I100: Import statements are in the wrong order -# I101: Imported names are in the wrong order. Should be -ignore = E, C, W, E402, I100, I101, D400 +# D: docstring warnings (unused pydocstyle extension) +# F841: local variable assigned but never used +ignore = E, C, W, D, F841 exclude = .cache, .github