
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
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 7,433 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.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.