summaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2023-01-19 01:06:08 +0000
committerQMK Bot <hello@qmk.fm>2023-01-19 01:06:08 +0000
commit3723c0e3d57f0afdff0e1b7421d26d6c7f6c980d (patch)
treeff40347d0912e988e6fca4762b88159ca4987206 /lib/python
parent0b25528b6bc433e8609d4e12fb108b4ee7865197 (diff)
parent327f7ee9a74f1740106d46e65e909208a1372ad3 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/qmk/cli/lint.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/python/qmk/cli/lint.py b/lib/python/qmk/cli/lint.py
index c67809a697..897a6c4c0d 100644
--- a/lib/python/qmk/cli/lint.py
+++ b/lib/python/qmk/cli/lint.py
@@ -12,6 +12,8 @@ from qmk.path import is_keyboard, keyboard
12from qmk.git import git_get_ignored_files 12from qmk.git import git_get_ignored_files
13from qmk.c_parse import c_source_files 13from qmk.c_parse import c_source_files
14 14
15CHIBIOS_CONF_CHECKS = ['chconf.h', 'halconf.h', 'mcuconf.h', 'board.h']
16
15 17
16def _list_defaultish_keymaps(kb): 18def _list_defaultish_keymaps(kb):
17 """Return default like keymaps for a given keyboard 19 """Return default like keymaps for a given keyboard
@@ -64,6 +66,15 @@ def _handle_json_errors(kb, info):
64 return ok 66 return ok
65 67
66 68
69def _chibios_conf_includenext_check(target):
70 """Check the ChibiOS conf.h for the correct inclusion of the next conf.h
71 """
72 for i, line in enumerate(target.open()):
73 if f'#include_next "{target.name}"' in line:
74 return f'Found `#include_next "{target.name}"` on line {i} of {target}, should be `#include_next <{target.name}>` (use angle brackets, not quotes)'
75 return None
76
77
67def _rules_mk_assignment_only(kb): 78def _rules_mk_assignment_only(kb):
68 """Check the keyboard-level rules.mk to ensure it only has assignments. 79 """Check the keyboard-level rules.mk to ensure it only has assignments.
69 """ 80 """
@@ -121,6 +132,12 @@ def keymap_check(kb, km):
121 cli.log.error(f'{kb}/{km}: The file "{file}" does not have a license header!') 132 cli.log.error(f'{kb}/{km}: The file "{file}" does not have a license header!')
122 ok = False 133 ok = False
123 134
135 if file.name in CHIBIOS_CONF_CHECKS:
136 check_error = _chibios_conf_includenext_check(file)
137 if check_error is not None:
138 cli.log.error(f'{kb}/{km}: {check_error}')
139 ok = False
140
124 return ok 141 return ok
125 142
126 143
@@ -153,6 +170,12 @@ def keyboard_check(kb):
153 cli.log.error(f'{kb}: The file "{file}" does not have a license header!') 170 cli.log.error(f'{kb}: The file "{file}" does not have a license header!')
154 ok = False 171 ok = False
155 172
173 if file.name in CHIBIOS_CONF_CHECKS:
174 check_error = _chibios_conf_includenext_check(file)
175 if check_error is not None:
176 cli.log.error(f'{kb}: {check_error}')
177 ok = False
178
156 return ok 179 return ok
157 180
158 181