
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
eslint-config-loopback
Advanced tools
LoopBack's ESLint shareable configs.
Add eslint
and eslint-config-loopback
to devDependencies
:
npm install -D eslint eslint-config-loopback
In your project root, create/modify .eslintrc
:
{
"extends": "loopback"
}
Then in package.json
, set your run script:
...
"scripts": {
"lint": "eslint ."
},
...
That's it. Try it out by running:
npm run lint
It is recommended to set a
posttest
run script to auto lint after running tests:... "scripts": { "lint": "eslint .", "test": "mocha", "posttest": "npm run lint" }, ...
To override a particular rule, use the rules
key:
{
"extends": "loopback",
"rules": {
"comma-dangle": "off"
}
}
While adopting ESLint in existing projects, there may be too many errors to fix
at once. In such cases, it may be desirable to modify the rule setting
of individual rules:
"off"
- Turn the rule off"warn"
- Turn the rule on as a warning (doesn't affect exit code)"error"
- Turn the rule on as an error (exit code is 1 when triggered)FAQs
ESLint configs for LoopBack projects.
The npm package eslint-config-loopback receives a total of 4,533 weekly downloads. As such, eslint-config-loopback popularity was classified as popular.
We found that eslint-config-loopback demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 13 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.