32 lines
520 B
JSON
32 lines
520 B
JSON
|
{
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"jquery": true
|
||
|
},
|
||
|
"parser": "@babel/eslint-parser",
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 2020,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"plugins": [
|
||
|
"prettier"
|
||
|
],
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"prettier"
|
||
|
],
|
||
|
"rules": {
|
||
|
"prettier/prettier": "error",
|
||
|
"no-undef": "off",
|
||
|
"no-unused-vars": "off"
|
||
|
},
|
||
|
"globals": {
|
||
|
"$": "readonly",
|
||
|
"jQuery": "readonly",
|
||
|
"document": "readonly",
|
||
|
"window": "readonly",
|
||
|
"console": "readonly"
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|