mirror of
https://github.com/RedWizardsLab/EchoHub.git
synced 2026-09-04 16:46:08 +02:00
- Create package.json to manage markdownlint-cli2 as a dev dependency. - Add PowerShell script for linting Markdown files with options for fixing issues. - Update shell script to prefer locally installed markdownlint-cli2 or fallback to npx.
13 lines
282 B
JSON
13 lines
282 B
JSON
{
|
|
"name": "echohub",
|
|
"private": true,
|
|
"description": "Repo tooling — markdown linting. Not an npm package.",
|
|
"scripts": {
|
|
"lint:md": "markdownlint-cli2",
|
|
"lint:md:fix": "markdownlint-cli2 --fix"
|
|
},
|
|
"devDependencies": {
|
|
"markdownlint-cli2": "^0.23.0"
|
|
}
|
|
}
|