Procházet zdrojové kódy

Merge remote-tracking branch 'origin/develop' into xap

QMK Bot před 2 roky
rodič
revize
b8ff2f8bd1
2 změnil soubory, kde provedl 5 přidání a 1 odebrání
  1. 2 1
      .gitignore
  2. 3 0
      lib/python/qmk/cli/lint.py

+ 2 - 1
.gitignore

@@ -109,5 +109,6 @@ compile_commands.json
 .clangd/
 .clangd/
 .cache/
 .cache/
 
 
-# VIA(L) json files that don't belong in QMK repo
+# VIA(L) files that don't belong in QMK repo
 via*.json
 via*.json
+/keyboards/**/keymaps/vial/*

+ 3 - 0
lib/python/qmk/cli/lint.py

@@ -20,6 +20,9 @@ def _list_defaultish_keymaps(kb):
     """
     """
     defaultish = ['ansi', 'iso', 'via']
     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()
     keymaps = set()
     for x in list_keymaps(kb):
     for x in list_keymaps(kb):
         if x in defaultish or x.startswith('default'):
         if x in defaultish or x.startswith('default'):