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.
This commit is contained in:
Matthias Bussonnier
2017-07-25 13:50:13 -07:00
parent f364f8e832
commit 2603cbb102

View File

@@ -7,7 +7,10 @@
# F403: import * # F403: import *
# F811: redefinition of unused `name` from line `N` # F811: redefinition of unused `name` from line `N`
# F841: local variable assigned but never used # 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 = exclude =
.cache, .cache,