Add markdownlint-cli to yarn dependencies
This is the tool that we use to lint the Markdown files. Let's add it to yarn.lock so that we can use it in development. Pinned to 0.18.0.
Showing
... | ... | @@ -16,6 +16,7 @@ |
"karma": "BABEL_ENV=${BABEL_ENV:=karma} karma start --single-run true config/karma.config.js", | ||
"karma-coverage": "BABEL_ENV=coverage karma start --single-run true config/karma.config.js", | ||
"karma-start": "BABEL_ENV=karma karma start config/karma.config.js", | ||
"markdownlint": "markdownlint -c .markdownlint.json 'doc/**/*.md'", | ||
"postinstall": "node ./scripts/frontend/postinstall.js", | ||
"prettier-staged": "node ./scripts/frontend/prettier.js check", | ||
"prettier-staged-save": "node ./scripts/frontend/prettier.js save", | ||
... | ... | @@ -185,6 +186,7 @@ |
"karma-mocha-reporter": "^2.2.5", | ||
"karma-sourcemap-loader": "^0.3.7", | ||
"karma-webpack": "^4.0.2", | ||
"markdownlint-cli": "0.18.0", | ||
"md5": "^2.2.1", | ||
"node-sass": "^4.12.0", | ||
"nodemon": "^1.18.9", | ||
... | ... |
Please register or sign in to comment