@dmitriyzverev/eslint-config
v3.0.1
Published
_The [ESLint](https://eslint.org/) configuration that uses in my packages_
Downloads
7
Readme
@dmitriyzverev/eslint-config
The ESLint configuration that uses in my packages
Usage
Install dependencies:
npm i eslint typescript @dmitriyzverev/eslint-config
Configure
.eslintrc
file:{ "extends": ["@dmitriyzverev/eslint-config"], "parserOptions": { "sourceType": "module", "project": ["path/to/your/tsconfig.json"] } }
Run ESLint:
npx eslint
Usage with React
Configure .eslintrc
file:
{
"extends": [
"@dmitriyzverev/eslint-config",
"@dmitriyzverev/eslint-config/react"
],
"parserOptions": {
"sourceType": "module",
"project": ["path/to/your/tsconfig.json"]
}
}