diff --git a/lib/python/qmk/cli/lint.py b/lib/python/qmk/cli/lint.py index 5939a0783c..e62a8e593e 100644 --- a/lib/python/qmk/cli/lint.py +++ b/lib/python/qmk/cli/lint.py @@ -114,7 +114,7 @@ def keymap_check(kb, km): invalid_files = git_get_ignored_files(keymap_path.parent.as_posix()) for file in invalid_files: # Ignore via files, I'm comitting them to this branch for now - if file.startswith('via_'): + if file.startswith('keyboards/lotus/kle/via'): continue cli.log.error(f'{kb}/{km}: The file "{file}" should not exist!') ok = False