Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
eslint-config-simplifield
Advanced tools
ESLint configuration at Simplifield.
To use those rules in your projects, first, install it
as a development dependency and than add it to your .eslintrc
file.
It will automatically append the SimpliField rules to your project.
Theses are our own rules but you can require a reconsideration of a rule by creating an issue which name is the rule you wanna change.
See shareable configs documentation for more infos.
Sample .eslintrc
using this plugin:
{
"extends": "eslint-config-simplifield",
"env": {
"node": true,
"mocha": true
},
"globals": {
"require": false,
"describe": false,
"beforeEach": false,
"afterEach": false,
"before": false,
"after": false,
"it": false,
"sinon": false,
"module": false
},
"plugins": [
"mongodb"
]
}
A .eslintrc
for frontend with react & flow:
{
"extends": "eslint-config-simplifield",
"plugins": [ "react", "flowtype" ],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"react/jsx-uses-vars": "error",
"react/jsx-uses-react": "error",
"keyword-spacing": ["error", { "before": true }],
"arrow-parens": ["error", "as-needed"],
"operator-linebreak": "off",
"no-mixed-operators": "off",
"newline-per-chained-call": "off",
"indent": "off"
}
}
FAQs
Simplifield Lint rules
We found that eslint-config-simplifield demonstrated a not healthy version release cadence and project activity because the last version was released 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.