24 lines
530 B
JSON
24 lines
530 B
JSON
{
|
|||
|
|
"parser": "@typescript-eslint/parser",
|
||
|
|
"extends": [
|
||
|
|
"eslint:recommended",
|
||
|
|
"plugin:@typescript-eslint/recommended"
|
||
|
|
],
|
||
|
|
"plugins": ["@typescript-eslint"],
|
||
|
|
"env": {
|
||
|
|
"browser": true,
|
||
|
|
"es2021": true,
|
||
|
|
"node": true
|
||
|
|
},
|
||
|
|
"parserOptions": {
|
||
|
|
"ecmaVersion": "latest",
|
||
|
|
"sourceType": "module",
|
||
|
|
"jsx": true
|
||
|
|
},
|
||
|
|
"ignorePatterns": ["tsconfig.json", ".next", "node_modules"],
|
||
|
|
"rules": {
|
||
|
|
"@typescript-eslint/no-explicit-any": "off",
|
||
|
|
"@typescript-eslint/triple-slash-reference": "off"
|
||
|
|
}
|
||
|
|
}
|