
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
eslint-config-sensible
Advanced tools
This package provides sensible shareable Eslint configs.
This package exports the following ESLint configurations for your usage.
async/await
, class properties
, decorators
, etcOur default export contains all of our ESLint rules for ES6+.
It does not include rules for node
, react
or lodash
.
You need to add those from
respectively, if you need.
It requires:
eslint
eslint-plugin-import
You can extend/override the rules for this config. You can find the list of rules:
Installation:
npm install --save-dev eslint-config-sensible eslint-plugin-import eslint
"extends": ["sensible"]
to your .eslintrc.*
config.This config is like default sensible
config, but it also supports:
async/await
class properties
decorators
types
It does not include rules for node
, react
or lodash
.
You need to add those from
respectively, if you need.
It requires:
eslint
babel-eslint
eslint-plugin-babel
eslint-plugin-import
You can extend/override the rules for this config. You can find the list of rules:
Installation:
npm install --save-dev eslint-config-sensible eslint-plugin-import eslint-plugin-babel babel-eslint eslint
"extends": ["sensible/babel"]
to your .eslintrc.*
config.Lints ES5 and below.
It does not include rules for node
, react
or lodash
.
You need to add those from
respectively, if you need.
It requires:
eslint
eslint-plugin-import
You can extend/override the rules for this config. You can find the list of rules:
Installation:
npm install --save-dev eslint-config-sensible eslint-plugin-import eslint
"extends": ["sensible/legacy"]
to your .eslintrc.*
config.Lints Node.js code.
It includes Node.js
rules only.
It requires:
eslint
You can extend/override the rules for this config. You can find the list of rules here.
Installation:
npm install --save-dev eslint-config-sensible eslint
"extends": ["sensible/node"]
to your .eslintrc.*
config.Lints React.js/JSX code.
It includes React
/JSX
rules only.
It requires:
eslint
eslint-plugin-react
You can extend/override the rules for this config. You can find the list of rules here.
Installation:
npm install --save-dev eslint-config-sensible eslint-plugin-react eslint
"extends": ["sensible/react"]
to your .eslintrc.*
config.Lints lodash
v4 code.
It includes lodash
rules only.
It requires:
eslint
eslint-plugin-lodash
It only supports the default import of lodash, e.g.
var _ = require('lodash')
or import _ from 'lodash'
It does not support the usage of:
lodash/fp
var map = require('lodash/map')
orvar map = require('lodash').map
_
as your lodash
identifier (can be changed, read below)In your .eslintrc.*
config you can change the lodash
identifier, that this config
is going to look for, like this:
{
"extends": ["sensible/lodash"],
"settings": {
"lodash": {
"pragma": "_" // default
}
}
}
You can extend/override the rules for this config. You can find the list of rules here.
Installation:
npm install --save-dev eslint-config-sensible eslint-plugin-lodash eslint
"extends": ["sensible/lodash"]
to your .eslintrc.*
config.{
"extends": ["sensible", "sensible/node" "sensible/react"]
}
{
"extends": ["sensible", sensible/lodash"]
}
{
"extends": ["sensible/legacy", "sensible/node" "sensible/react]
}
Overrides quotes: [2, "single"]
{
"extends": ["sensible"],
"rules": {
"quotes": [2, "double"],
}
}
eslint-plugin-import
rule, if you use default
or legacy
config.It has import/no-unresolved
rule enabled and by default uses Node.js
resolver.
If you are going to use webpack with loaders specified in require/import, then you might want to install eslint-import-resolver-webpack.
If you use another module bundler, that lets you use custom
paths in require/import, then you might
want to read this.
Or you can disable this rule entirely, although I find it very useful.
{
"extends": [
"sensible" // or "sensible/legacy"
],
"rules": {
"import/no-unresolved": 0
}
}
FAQs
Eslint config with sensible defaults
We found that eslint-config-sensible demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.