Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@laboratoria/mdlint
Advanced tools
CLI tool to lint your **markdown** files using the [markdownlint](https://github.com/DavidAnson/markdownlint) module.
CLI tool to lint your markdown files using the markdownlint module.
Globally:
npm i -g @laboratoria/mdlint
In your project:
npm i --save-dev @laboratoria/mdlint
Once you have installed it in your project you can add a task in your
package.json
to run the linter:
{
"name": "your-package",
"version": "0.0.0",
"scripts": {
"lint": "mdlint ."
},
"devDependencies": {
"@laboratoria/mdlint": "^1.0.2"
}
}
This will allow you to run the linter like this:
npm run lint
$ mdlint --help
Usage:
mdlint [path1] [path2] ...
Options:
-c, --config Path to config file. Default: '.mdlintrc'
-i, --ignore Path to file with patterns to ignore. Default: '.mdlintignore'
-v, --verbose Show verbose output.
-h, --help Show this help.
-V, --version Show mdlint version.
Laboratoria 2017
.mdlintrc
{
"default": true,
"ul-style": { "style": "sublist" },
"no-duplicate-header": false
}
.mdlintignore
node_modules/
bower_components/
FAQs
CLI tool to lint your **markdown** files using the [markdownlint](https://github.com/DavidAnson/markdownlint) module.
The npm package @laboratoria/mdlint receives a total of 14 weekly downloads. As such, @laboratoria/mdlint popularity was classified as not popular.
We found that @laboratoria/mdlint demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.