@voxpelli/eslint-config
My personal ESLint config – a superset of the neostandard base config that I co-created and co-maintain.
This config contains a couple of more opinionated checks that I find helpful in my projects.
Install
To easily install correct peer dependencies, you can use install-peerdeps:
install-peerdeps --dev @voxpelli/eslint-config
Usage
Add an eslint.config.js (or eslint.config.mjs if your project is CJS) that exports this config:
export { default } from '@voxpelli/eslint-config';
If you need to configure something, instead do:
import { voxpelli } from '@voxpelli/eslint-config';
export default voxpelli({
cjs: true, // Ensures the config has rules fit for a CJS context rather than an ESM context
noMocha: true, // By standard this config expects tests to be of the Mocha kind, but one can opt out
});
You can also do custom extensions:
import { voxpelli } from '@voxpelli/eslint-config';
export default [
...voxpelli({
// Config options
}),
{
// Custom ESLint config
},
];
#
How does this differ from pure neostandard?
- :stop_sign: = changed to
errorlevel - :warning: = changed to
warnlevel - :mute: = deactivated
- :wrench: = changed config
:wrench: Changed neostandard rules
- :wrench:
@stylistic/comma-dangle– changed – set to enforce dangling commas in arrays, objects, imports and exports - :wrench:
no-unused-vars– changed – sets"args": "all", "argsIgnorePattern": "^_",because I personally don't feel limited by Express error handlers + wants to stay in sync with TypeScriptnoUnusedParameters
:heavy_plus_sign: Added ESLint core rules
- :warning:
func-style– disallows function declarations, good to be consistent with how functions are declared - :warning:
no-console– warns on existence ofconsole.logand similar, as they are mostly used for debugging and should not be committed - :stop_sign:
no-constant-binary-expression– errors when binary expressions are detected to constantly evaluate a specific way - :stop_sign:
no-nonoctal-decimal-escape– there's no reason not to ban it - :stop_sign:
no-unsafe-optional-chaining– enforces one to be careful with.?and not use it in ways that can inadvertently cause errors orNaNresults - :warning:
no-warning-comments– warns of the existence ofFIXMEcomments, as they should always be fixed before pushing - :stop_sign:
object-shorthand– requires the use of object shorthands for properties, more tidy
:package: Added ESLint rule packages
plugin:jsdoc/recommendedplugin:mocha/recommendedplugin:n/recommendedplugin:promise/recommendedplugin:security/recommendedplugin:unicorn/recommended
:wrench: Overrides of added ESLint rule packages
- :mute:
jsdoc/check-types– deactivated – to improve use with types in js. - :mute:
jsdoc/no-undefined-types– deactivated – to improve use with types in js. - :mute:
jsdoc/require-jsdoc– deactivated – to improve use with types in js. - :mute:
jsdoc/require-param-description– deactivated – to improve use with types in js. - :mute:
jsdoc/require-property-description– deactivated – to improve use with types in js. - :mute:
jsdoc/require-returns-description– deactivated – to improve use with types in js. - :mute:
jsdoc/require-yields– deactivated – to improve use with types in js. - :wrench:
jsdoc/tag-lines– changed – to enforce an empty line between description and tags, but disallow them elsewhere. :mute:
jsdoc/valid-types– deactivated – to improve use with types in js.:mute:
mocha/no-mocha-arrows– deactivated – while Mocha discourages arrow functions I find it more readable to use them + I find it safe when combined with type checking as then the type checking will notify one when one tries to do athis.setTimeout()or similar in an arrow function where there is no such local context:mute:
n/no-process-exit– deactivated – added byplugin:n/recommended, but deactivated in favor ofunicorn/no-process-exit:mute:
security/detect-object-injection– deactivated – causes too many false errors:mute:
security/detect-unsafe-regex– deactivated – at least early on wasn't very stable:wrench:
unicorn/catch-error-name– changed – I prefererrovererroras I finderrorto be a far too similar name to the built inErrorclass- :mute:
unicorn/explicit-length-check– deactivated – I don't see an issue withif (string.length)instead ofif (string.length !== 0) - :warning:
unicorn/unicorn/no-await-expression-member– changed – eg. useful in chai tests - :warning:
unicorn/unicorn/no-negated-condition– deactivated – turned off, there are valid cases for this, so it simply gets noisy - :mute:
unicorn/numeric-separators-style– deactivated – currently not enough good support for this in engines - :warning:
unicorn/prefer-add-event-listener– changed – set towarninstead oferror - :warning:
unicorn/prefer-event-target– changed – set towarninstead oferror - :mute:
unicorn/prefer-module– deactivated – only useful when you know you're targetting ESM - :warning:
unicorn/prefer-spread– changed – set towarninstead oferror - :warning:
unicorn/prefer-string-replace-all– changed – set towarninstead oferror - :mute:
unicorn/prevent-abbreviations– deactivated – same asunicorn/catch-error-name, I prefer an abbreviatederrover a non-abbreviatederrorbecause the latter is too similar toErrorfor my taste - :wrench:
unicorn/switch-case-braces– changed – I prefer to avoid braces incasestatements rather than enforcing them
:heavy_plus_sign: Additional standalone ESLint rules
:stop_sign:
@stylistic/quote-props– requires properties to be quoted when needed but otherwise disallows it:warning:
es-x/no-exponential-operators– disallows the use of the**operator, as that's in most cases a mistake and one really meant to write*
- :warning:
n/prefer-global/console - :warning:
n/prefer-promises/fs - :warning:
n/no-process-env :stop_sign:
n/no-sync:stop_sign:
promise/prefer-await-to-then:stop_sign:
sort-destructure-keys/sort-destructure-keys:stop_sign:
unicorn/consistent-destructuring– while unicorn dropped it from their recommended config I still like it, see #283
ESM specific rules
Unless one configures cjs: true these additional rules will be applied:
:wrench: Overrides of rules
- :warning:
func-style– enforces function declarations whenever an arrow function isn't used. Better to doexport function foo () {thanexport const foo = function () { - :stop_sign:
unicorn/prefer-module– changed – restored to itsplugin:unicorn/recommendedvalue oferror
Can I use this in my own project?
You may want to use neostandard instead, it's the general base config that I help maintain for the community.
I do maintain this project though as if multiple people are using it, so sure, you can use it, but its ultimate purpose is to support my projects.
I do follow semantic versioning, so the addition or tightening of any checks will trigger major releases whereas minor and patch releases should only ever have relaxation of rules and bug fixes.
Alternatives
See also
voxpelli/ghatemplates– the templates I use withghatto update GitHub Actions in my projectsvoxpelli/renovate-config-voxpelli– the shareable renovate setup I use in my projectsvoxpelli/tsconfig– the shareabletsconfig.jsonsetup I use in my projects