summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2023-10-08 11:45:49 +0000
committerQMK Bot <hello@qmk.fm>2023-10-08 11:45:49 +0000
commit690792eca945df514e2382c815ad49775defa3de (patch)
tree3c5ba0b8759923ec13ce0d7e2f9a5cbc273f6da4
parent99b545843eb9f354cf391fab4341deaa3f11fba3 (diff)
parent7ca652ce6d6582ca682f7e7beeb1ad1908087985 (diff)
Merge remote-tracking branch 'origin/master' into develop
-rw-r--r--.gitignore3
-rw-r--r--lib/python/qmk/cli/lint.py3
2 files changed, 5 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index e9e7b27e6c..f6401d9f83 100644
--- a/.gitignore
+++ b/.gitignore
@@ -108,5 +108,6 @@ compile_commands.json
.clangd/
.cache/
-# VIA(L) json files that don't belong in QMK repo
+# VIA(L) files that don't belong in QMK repo
via*.json
+/keyboards/**/keymaps/vial/*
diff --git a/lib/python/qmk/cli/lint.py b/lib/python/qmk/cli/lint.py
index 897a6c4c0d..a7c85b5643 100644
--- a/lib/python/qmk/cli/lint.py
+++ b/lib/python/qmk/cli/lint.py
@@ -20,6 +20,9 @@ def _list_defaultish_keymaps(kb):
"""
defaultish = ['ansi', 'iso', 'via']
+ # This is only here to flag it as "testable", so it doesn't fly under the radar during PR
+ defaultish.append('vial')
+
keymaps = set()
for x in list_keymaps(kb):
if x in defaultish or x.startswith('default'):