[CLI] Lint error on missing keyboard readme (#25814)

This commit is contained in:
Jack Sangdahl 2025-11-21 23:57:58 -07:00 committed by GitHub
parent 3e0b22af68
commit 1a7f544e0d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -304,6 +304,10 @@ def keyboard_check(kb): # noqa C901
cli.log.error(f'{kb}: The file "{file}" should not exist!')
ok = False
if not _get_readme_files(kb):
cli.log.error(f'{kb}: Is missing a readme.md file!')
ok = False
for file in _get_readme_files(kb):
if _is_invalid_readme(file):
cli.log.error(f'{kb}: The file "{file}" still contains template tokens!')