원클릭으로
lint-markdown
Check and fix formatting and other issues in markdown files using markdownlint-cli2
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Check and fix formatting and other issues in markdown files using markdownlint-cli2
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | lint-markdown |
| description | Check and fix formatting and other issues in markdown files using markdownlint-cli2 |
Check markdown files for common mistakes.
Run npm install from the repository root to install markdownlint-cli2 from devDependencies in the root package.json. Then run npx markdownlint-cli2 <command> to use the locally installed version.
The markdownlint-cli2 configuration is in .markdownlint-cli2.yaml at the repository root.
The configuration has the following structure:
globs: file patterns to lint (currently **/*.md), so no command-line arguments are needed.ignores: paths excluded from linting.config: markdownlint rule overrides (e.g., first-line-h1, line-length, ol-prefix).Run npx markdownlint-cli2 to lint Markdown files according to the configuration.
Run with the --fix flag to automatically fix supported issues:
npx markdownlint-cli2 --fix
Run the same lint command again to verify all issues are fixed. There should be no errors reported.