module.exports = { root: true, env: { node: true, }, extends: [ "plugin:vue/vue3-essential", "eslint:recommended", "@vue/prettier", ], parserOptions: { parser: "@babel/eslint-parser", }, // "writable" 以允许重写变量,或 "readonly" 不允许重写变量 globals: { XE: "readonly", VE_ENV: "readonly", VE_API: "readonly", }, rules: { indent: [2, 4, { SwitchCase: 1 }], "prettier/prettier": [2, { tabWidth: 4, endOfLine: "auto" }], "no-console": "off", "no-debugger": "off", "vue/multi-word-component-names": 0, }, };