0.2.6 • Published 3 years ago
eslint-config-iinitz v0.2.6
eslint-config-iinitz
ESLint config base on eslint-config-airbnb.
Installation
yarn add --dev eslint-config-iinitz
Usage
JavaScript
Add iinitz/js-base
to the "extends" array in your .eslintrc
file.
{
"extends": ["iinitz/js-base"]
}
JavaScript React
Add iinitz/js-react
to the "extends" array in your .eslintrc
file.
{
"extends": ["iinitz/js-react"]
}
TypeScript
Add iinitz/ts-base
to the "extends" array in your .eslintrc
file.
{
"extends": ["iinitz/ts-base"],
"parserOptions": {
"project": "./tsconfig.json"
},
}
TypeScript React
Add iinitz/ts-react
to the "extends" array in your .eslintrc
file.
{
"extends": ["iinitz/ts-react"],
"parserOptions": {
"project": "./tsconfig.json"
},
}