2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-08 17:22:31 +03:00

Add markdownlint support.

This commit is contained in:
XhmikosR
2020-01-17 15:26:32 +02:00
parent 385fea49e8
commit 20b1758a96
3 changed files with 206 additions and 1 deletions
+3 -1
View File
@@ -58,9 +58,10 @@
"docs-build": "hugo --cleanDestinationDir",
"docs-compile": "npm run docs-build",
"docs-linkinator": "linkinator _site --recurse --skip \"^(?!http://localhost)\" --verbosity error",
"docs-markdownlint": "markdownlint-cli2 \"**/*.md\" \"!**/node_modules/**\"",
"docs-spellcheck": "cspell \"site/**/*.md\" --no-progress",
"docs-vnu": "node build/vnu-jar.js",
"docs-lint": "npm-run-all --aggregate-output --parallel docs-vnu docs-linkinator docs-spellcheck",
"docs-lint": "npm-run-all --aggregate-output --parallel docs-vnu docs-linkinator docs-markdownlint docs-spellcheck",
"docs-serve": "hugo server --port 9001 --disableFastRender",
"docs-serve-only": "npx sirv-cli _site --port 9001",
"lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
@@ -135,6 +136,7 @@
"karma-rollup-preprocessor": "^7.0.7",
"linkinator": "^2.16.2",
"lockfile-lint": "^4.6.2",
"markdownlint-cli2": "^0.3.2",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.4",