24 lines
541 B
JSON
24 lines
541 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"node": false
|
|
},
|
|
"extends": [
|
|
/** @see https://eslint.vuejs.org/rules/ */
|
|
"eslint:recommended"
|
|
// "plugin:react/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"parser": "@typescript-eslint/parser",
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-unused-vars": "off",
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/ban-types": "off",
|
|
"@typescript-eslint/no-empty-function": "off"
|
|
}
|
|
}
|