123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- module.exports = {
- root: true,
- env: {
- node: true,
- "vue/setup-compiler-macros": true,
- },
- extends: [
- "plugin:vue/vue3-essential",
- "eslint:recommended",
- "@vue/prettier",
- ],
- parserOptions: {
- parser: "@babel/eslint-parser",
- },
-
- globals: {
- XE: "readonly",
- VE_ENV: "readonly",
- VE_API: "readonly",
- LZ_WARNS: "readonly",
- },
- rules: {
- indent: [2, 4, { SwitchCase: 1 }],
-
- "prettier/prettier": "off",
- "no-console": "warn",
- "no-debugger": "warn",
- "no-unused-vars": "off",
- "no-dupe-keys":"warn",
- "indent": "off",
- "no-case-declarations":"off",
- "no-inner-declarations":"off",
- "no-loss-of-precision":"off",
- "vue/multi-word-component-names": 0,
- },
- };
|