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