We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fea96b6 commit c286c83Copy full SHA for c286c83
lib/python/qmk/cli/lint.py
@@ -113,6 +113,9 @@ def keymap_check(kb, km):
113
# Additional checks
114
invalid_files = git_get_ignored_files(keymap_path.parent.as_posix())
115
for file in invalid_files:
116
+ # Ignore via files, I'm comitting them to this branch for now
117
+ if file.startswith('via_'):
118
+ continue
119
cli.log.error(f'{kb}/{km}: The file "{file}" should not exist!')
120
ok = False
121
0 commit comments