diff options
| author | Joel Challis | 2025-04-11 14:19:02 +0200 |
|---|---|---|
| committer | GitHub | 2025-04-11 14:19:02 +0200 |
| commit | e27dd0f26faa3cbe787e539b2435450fffa3709a (patch) | |
| tree | 4dc86b6fc403469a3705891f26811d439e214614 /lib/python/qmk/cli/lint.py | |
| parent | 6624671a603c783e60719792ab02c890966d1b6c (diff) | |
Exclude external userspace from lint checking (#24680)
Diffstat (limited to 'lib/python/qmk/cli/lint.py')
| -rw-r--r-- | lib/python/qmk/cli/lint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/lint.py b/lib/python/qmk/cli/lint.py index bcf905f579..bc14b61e8b 100644 --- a/lib/python/qmk/cli/lint.py +++ b/lib/python/qmk/cli/lint.py @@ -26,7 +26,7 @@ def _list_defaultish_keymaps(kb): defaultish.extend(INVALID_KM_NAMES) keymaps = set() - for x in list_keymaps(kb): + for x in list_keymaps(kb, include_userspace=False): if x in defaultish or x.startswith('default'): keymaps.add(x) |