From 2603cbb102f09f42a834f56ae0b405bc3432fefc Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Tue, 25 Jul 2017 13:50:13 -0700 Subject: [PATCH] Ignore a couple other of regularly non followed lint rules. These rules are not followed in a lot of place leading to too many warnnigs which (at least in my editor) make code unreadable. --- .flake8 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index ba05051a..62bb0b5a 100644 --- a/.flake8 +++ b/.flake8 @@ -7,7 +7,10 @@ # F403: import * # F811: redefinition of unused `name` from line `N` # F841: local variable assigned but never used -ignore = E, C, W, F401, F403, F811, F841 +# 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, F401, F403, F811, F841, E402, I100, I101 exclude = .cache,