2022-04-15 05:11:46 +00:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es2021": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
2022-04-18 06:31:27 +00:00
|
|
|
"plugin:import/recommended",
|
|
|
|
"plugin:jsdoc/recommended"
|
2022-04-15 05:11:46 +00:00
|
|
|
],
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": "latest",
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"indent": [
|
|
|
|
"error",
|
|
|
|
4
|
|
|
|
],
|
|
|
|
"linebreak-style": [
|
|
|
|
"error",
|
|
|
|
"unix"
|
|
|
|
],
|
|
|
|
"quotes": [
|
|
|
|
"error",
|
|
|
|
"double"
|
|
|
|
],
|
|
|
|
"semi": [
|
|
|
|
"error",
|
|
|
|
"always"
|
2022-04-16 09:05:51 +00:00
|
|
|
],
|
|
|
|
"import/extensions": [
|
|
|
|
"error",
|
|
|
|
"ignorePackages"
|
2022-04-15 05:11:46 +00:00
|
|
|
]
|
2022-04-18 06:31:27 +00:00
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"jsdoc"
|
|
|
|
]
|
2022-04-15 05:11:46 +00:00
|
|
|
}
|