A collection of useful eslint configs
The new version has solved a lot of problems:
@eslint-kit/cli
anymore:eslint
, no prettier
, no plugins, parsers, resolvers and so on.@eslint-kit/configure
, create .eslintrc.js
and select presets you need.vue
, solid
, svelte
, nest.js
and other technologiestypescript
preset - no warnings in console
ESLint Kit is a collection of useful ESLint configs for much more convenient project developing:
@eslint-kit/cli
Here is the example for TypeScript React project:
{
"extends": [
"@eslint-kit/patch",
"@eslint-kit/base",
"@eslint-kit/typescript",
"@eslint-kit/react"
],
"parser": "@typescript-eslint/parser"
}
Check out our documentation.
Check out the Common issues section in docs.
Check out the Contributing section in docs.