Lint — Full Quality Suite
Run the full lint suite for this repository and report results.
Command
/lint
Workflow
- •
Shell formatting check — run
shfmt -i 2 -bn -sr -don all.shfiles underplugins/and any other directories. Report any files that need formatting. - •
Shell lint — run
shellcheck --shell=bashon all.shfiles underplugins/and any other directories. Report any warnings or errors. - •
Markdown lint — run
npx markdownlint-cli2 '**/*.md'. Report any rule violations. - •
Markdown formatting check — run
npx prettier --check '**/*.md'. Report any files that need formatting. - •
Summary — report the total number of errors per tool and list all affected files. If everything passes, confirm the repo is lint-clean.
If any tool reports errors, suggest the fix command (e.g., shfmt -w, prettier --write).