41 lines
624 B
JSON
41 lines
624 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true,
|
|
"jest": true
|
|
},
|
|
"extends": [
|
|
"plugin:react/recommended",
|
|
"plugin:react/jsx-runtime",
|
|
"standard",
|
|
"prettier"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"react",
|
|
"react-hooks",
|
|
"@typescript-eslint",
|
|
"prettier"
|
|
],
|
|
"settings": {
|
|
"react": {
|
|
"version": "18.0.0"
|
|
}
|
|
},
|
|
"globals": {
|
|
"JSX": "readonly"
|
|
},
|
|
"rules": {
|
|
"prettier/prettier": [
|
|
"error"
|
|
]
|
|
}
|
|
}
|