2021-10-25 02:41:37 +00:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es2021": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"prettier",
|
|
|
|
"plugin:prettier/recommended"
|
|
|
|
],
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": "latest",
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"eqeqeq": "error",
|
|
|
|
"semi": "off",
|
2021-10-25 03:23:34 +00:00
|
|
|
"prettier/prettier": "off",
|
|
|
|
"dot-notation": "error",
|
|
|
|
"no-empty-function": "error",
|
|
|
|
"no-extra-parens": [
|
|
|
|
"error",
|
|
|
|
"functions"
|
2021-10-25 14:42:00 +00:00
|
|
|
],
|
|
|
|
"no-unused-vars": "off"
|
2021-10-25 02:41:37 +00:00
|
|
|
}
|
|
|
|
}
|