29 lines
606 B
JSON
29 lines
606 B
JSON
|
{
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 2020,
|
||
|
"sourceType": "module",
|
||
|
"ecmaFeatures": {
|
||
|
// Allows for the parsing of JSX
|
||
|
"jsx": true
|
||
|
}
|
||
|
},
|
||
|
"ignorePatterns": [
|
||
|
"node_modules/**/*"
|
||
|
],
|
||
|
"settings": {
|
||
|
"react": {
|
||
|
"version": "detect"
|
||
|
}
|
||
|
},
|
||
|
"extends": [
|
||
|
"plugin:react/recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"prettier/@typescript-eslint",
|
||
|
"plugin:prettier/recommended"
|
||
|
],
|
||
|
"rules": {
|
||
|
"@typescript-eslint/explicit-function-return-type": "off",
|
||
|
"prettier/prettier": "error"
|
||
|
}
|
||
|
}
|