30 lines
574 B
JSON
30 lines
574 B
JSON
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"prettier",
|
|
"@typescript-eslint"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:prettier/recommended",
|
|
"prettier",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"no-undef": "off",
|
|
"no-unused-vars": "off"
|
|
},
|
|
"globals": {
|
|
"$": "readonly",
|
|
"jQuery": "readonly",
|
|
"document": "readonly",
|
|
"window": "readonly",
|
|
"console": "readonly"
|
|
}
|
|
}
|