Skip to content

Commit c286c83

Browse files
committed
lint: Ignore via files for now
Signed-off-by: Daniel Schaefer <[email protected]>
1 parent fea96b6 commit c286c83

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/python/qmk/cli/lint.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,9 @@ def keymap_check(kb, km):
113113
# Additional checks
114114
invalid_files = git_get_ignored_files(keymap_path.parent.as_posix())
115115
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
116119
cli.log.error(f'{kb}/{km}: The file "{file}" should not exist!')
117120
ok = False
118121

0 commit comments

Comments
 (0)