Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
eslint-plugin-markdownlint
Advanced tools
Eslint plugin which runs markdownlint.
npm install eslint-plugin-markdownlint --save-dev
In order to use this plugin there is required to put it into override section
of .eslintrc
file with defined files array (select markdown files), parser and
rules.
Recommended config enable all options except deprecated, all with default values and reported as error.
{
"overrides": [{
"files": ["*.md"],
"parser": "eslint-plugin-markdownlint/parser",
"extends": ["plugin:markdownlint/recommended"]
}]
}
If you want to modify recommended rules simply add related rule to the rules section.
{
"overrides": [{
"files": ["*.md"],
"parser": "eslint-plugin-markdownlint/parser",
"extends": ["plugin:markdownlint/recommended"],
"rules": {
"markdownlint/md001": "off",
"markdownlint/md003": "warn",
"markdownlint/md025": ["error", {
"level": 2
}]
}
}]
}
If you want to configure all settings manually, ommit
"extends": ["plugin:markdownlint/recommended"]
(all rules will be set to
'off'), then enable/configure requested rules in "rules" section.
It's worth to define separate entry in .editorconfig
if you're using it.
Following example uses default settings.
[*.md]
max_line_length = 80
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
This plugin is in early stage of development, so:
.mdlrc
mdXXX
to
select rule, but should be available in futureFor full documentation about markdownlint refer DavidAnson/markdownlint
FAQs
Eslint plugin for markdownlint
The npm package eslint-plugin-markdownlint receives a total of 15,916 weekly downloads. As such, eslint-plugin-markdownlint popularity was classified as popular.
We found that eslint-plugin-markdownlint demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.