25 lines
477 B
Plaintext
25 lines
477 B
Plaintext
{
|
|
"env": {
|
|
"jquery": true,
|
|
"browser": true,
|
|
"es2020": true
|
|
},
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020,
|
|
"sourceType": "module"
|
|
},
|
|
"extends": ["plugin:@typescript-eslint/recommended"],
|
|
"rules": {
|
|
"no-underscore-dangle": "off",
|
|
"import/extensions": "on",
|
|
"class-methods-use-this": [
|
|
"error",
|
|
{
|
|
"exceptMethods": ["getData", "_updateObject"]
|
|
}
|
|
]
|
|
}
|
|
}
|