add eslint working conf
This commit is contained in:
@@ -6,26 +6,22 @@
|
||||
},
|
||||
"extends": [
|
||||
"eslint:recommended",
|
||||
"plugin:vue/essential",
|
||||
"plugin:vue/base",
|
||||
"plugin:vue/strongly-recommended",
|
||||
"plugin:vue/recommended"
|
||||
"plugin:vue/essential"
|
||||
],
|
||||
"globals": {
|
||||
"Atomics": "readonly",
|
||||
"SharedArrayBuffer": "readonly"
|
||||
},
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 2018,
|
||||
"sourceType": "module"
|
||||
"ecmaVersion": 2018
|
||||
},
|
||||
"plugins": [
|
||||
"vue"
|
||||
],
|
||||
"rules": {
|
||||
"indent": [
|
||||
"off",
|
||||
2
|
||||
"error",
|
||||
4
|
||||
],
|
||||
"linebreak-style": [
|
||||
"error",
|
||||
@@ -36,10 +32,8 @@
|
||||
"single"
|
||||
],
|
||||
"semi": [
|
||||
"off",
|
||||
"always"
|
||||
],
|
||||
"no-console": "off",
|
||||
"strict": "off"
|
||||
"error",
|
||||
"never"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user