46 lines
867 B
JSON
46 lines
867 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"commonjs": true,
|
|
"es6": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:vue/essential",
|
|
"plugin:vue/base",
|
|
"plugin:vue/strongly-recommended",
|
|
"plugin:vue/recommended"
|
|
],
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"vue"
|
|
],
|
|
"rules": {
|
|
"indent": [
|
|
"off",
|
|
2
|
|
],
|
|
"linebreak-style": [
|
|
"error",
|
|
"unix"
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"single"
|
|
],
|
|
"semi": [
|
|
"off",
|
|
"always"
|
|
],
|
|
"no-console": "off",
|
|
"strict": "off"
|
|
}
|
|
}
|