fix(lint): fix all outstanding linter errors

This commit is contained in:
Josh Klar
2021-06-20 13:09:47 -07:00
parent 3797797b43
commit 54f4644b5c
5 changed files with 13 additions and 9 deletions

View File

@@ -18,9 +18,10 @@ extend-ignore =
C812, C813, C815,
per-file-ignores =
# Allow misaligned array entries, crazy line lengths, unused variables, and
# multiple spaces after commas in lists (for grid alignment)
user_keymaps/**/*.py: E131,F401,E501,E241,E131,BLK100
# Allow misaligned array entries, crazy line lengths, unused variables,
# multiple spaces after commas in lists (for grid alignment), and put
# your imports in whatever order you want
user_keymaps/**/*.py: E131,F401,E501,E241,E131,BLK100,I003
tests/test_data/keymaps/**/*.py: F401,E501
# Forgive me for my RAM hack sins
kmk/preload_imports.py: I001,I003,I004,F401