Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
eslint-plugin-stzhang
Advanced tools
A group of ESLint plugin and presets for the AMO company. # Setup 1. Global tools 1. `npm install -g yo` 1. `npm install -g generator-eslint` 1. Generate the eslint-plugin skeleton 1. `yo eslint:plugin` 1. Generate the eslint-rules skel
A group of ESLint plugin and presets for the AMO company.
npm install -g yo
npm install -g generator-eslint
yo eslint:plugin
yo eslint:rule
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-stzhang
:
$ npm install eslint-plugin-stzhang --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-stzhang
globally.
Add stzhang
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"stzhang"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"stzhang/arrow-parens": ["error", "as-needed"],
"stzhang/generator-star-spacing": ["error", "before"],
"stzhang/no-array-concat": ["error"],
"stzhang/no-string-charcode": ["error"],
"stzhang/no-util-format": ["error"],
"stzhang/require-yield": 2,
"stzhang/no-console": 2
}
}
FAQs
A group of ESLint plugin and presets for the AMO company. # Setup 1. Global tools 1. `npm install -g yo` 1. `npm install -g generator-eslint` 1. Generate the eslint-plugin skeleton 1. `yo eslint:plugin` 1. Generate the eslint-rules skel
We found that eslint-plugin-stzhang demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.