
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@lego/eslint-config-prettier
Advanced tools
Install this config package:
$ npm i -D @lego/eslint-config-prettier
Extend your eslint.json, and make sure @lego/eslint-config-prettier has been added, but make
sure it's always at the end.
{
"extends": ["@lego/eslint-config", "@lego/eslint-config-prettier"]
}
with TypeScript:
{
"extends": ["@lego/eslint-config-typescript", "@lego/eslint-config-prettier"]
}
with TypeScript & React:
{
"extends": [
"@lego/eslint-config-typescript",
"@lego/eslint-config-react",
"@lego/eslint-config-prettier"
]
}
With the above eslint.json configuration example, you can still use or override already defined
rules as such:
{
"extends": [
"@lego/eslint-config-typescript",
"@lego/eslint-config-react",
"@lego/eslint-config-prettier"
],
"rules": {
// eslint-config rules
"camelcase": "warn",
// @typescript-eslint/eslint-plugin rules
"@typescript-eslint/no-useless-constructor": "error",
// eslint-plugin-react rules
"react/jsx-child-element-spacing": "error",
// eslint-plugin-react-hooks rules
"react-hooks/exhaustive-deps": "warn",
// eslint-plugin-prettier rules
"prettier/prettier": [
"error",
{
"singleQuote": false
}
]
}
}
It's recommended to inspect the defined rule's configurations where the reasoning for the configuration lives. If a configuration could benefit more than just the project you're working on, feel free to create a pull request.
FAQs
LEGO shareable eslint config for js projects
The npm package @lego/eslint-config-prettier receives a total of 7 weekly downloads. As such, @lego/eslint-config-prettier popularity was classified as not popular.
We found that @lego/eslint-config-prettier demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.