mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-23 01:56:52 +03:00
31 lines
791 B
JSON
31 lines
791 B
JSON
|
{
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"ecmaFeatures": {
|
||
|
"jsx": true
|
||
|
}
|
||
|
},
|
||
|
"plugins": ["@typescript-eslint", "react"],
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"plugin:@typescript-eslint/eslint-recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
||
|
"plugin:react/recommended",
|
||
|
"plugin:prettier/recommended",
|
||
|
"prettier/@typescript-eslint",
|
||
|
"prettier/react"
|
||
|
],
|
||
|
"settings": {
|
||
|
"react": {
|
||
|
"version": "detect"
|
||
|
}
|
||
|
},
|
||
|
"rules": {
|
||
|
"@typescript-eslint/no-unsafe-return": "off",
|
||
|
"@typescript-eslint/no-unsafe-assignment": "off",
|
||
|
"@typescript-eslint/no-unsafe-call": "off",
|
||
|
"@typescript-eslint/no-unsafe-member-access": "off"
|
||
|
}
|
||
|
}
|