
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
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
posttestrun 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 8,808 weekly downloads. As such, eslint-config-loopback popularity was classified as popular.
We found that eslint-config-loopback demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.