Sane eslint configs for TypeScript and friends.
npm install --save-dev @paulomart/eslint-config
Add the following to your package.json:
{
(...)
"eslintConfig": {
"extends": "@paulomart/eslint-config/default"
},
(...)
}
Add the following to your package.json:
{
(...)
"eslintConfig": {
"extends": "@paulomart/eslint-config/react"
},
(...)
}
Add the following to your package.json:
{
(...)
"eslintConfig": {
"extends": "@paulomart/eslint-config/node"
},
(...)
}
Add the following to your package.json:
{
(...)
"eslintConfig": {
"extends": "@paulomart/eslint-config/nextjs"
},
(...)
}