forked from integrated_whb/integrated_whb_vue
35 lines
679 B
JavaScript
35 lines
679 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
browser: true,
|
||
|
es2021: true,
|
||
|
node: true
|
||
|
},
|
||
|
extends: [
|
||
|
"plugin:vue/vue3-essential",
|
||
|
"standard",
|
||
|
"@vue/prettier",
|
||
|
"eslint:recommended"
|
||
|
],
|
||
|
parserOptions: {
|
||
|
ecmaVersion: "latest",
|
||
|
sourceType: "module"
|
||
|
},
|
||
|
plugins: ["vue"],
|
||
|
rules: {
|
||
|
"no-console": "warn",
|
||
|
"vue/multi-word-component-names": "off",
|
||
|
camelcase: "off",
|
||
|
eqeqeq: "error",
|
||
|
"vue/eqeqeq": "error",
|
||
|
"no-unused-vars": [
|
||
|
"error",
|
||
|
{ vars: "all", args: "after-used", ignoreRestSiblings: false }
|
||
|
],
|
||
|
"linebreak-style": ["off",'windows'],
|
||
|
},
|
||
|
globals: {
|
||
|
BMapGL: "readonly",
|
||
|
JSEncrypt: "readonly",
|
||
|
}
|
||
|
};
|