| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | 
							- /*
 
-  * @Author: your name
 
-  * @Date: 2021-01-07 09:49:29
 
-  * @LastEditTime: 2022-04-28 18:32:51
 
-  * @LastEditors: Please set LastEditors
 
-  * @Description: In User Settings Edit
 
-  * @FilePath: \vue3-element-admin\.eslintrc.js
 
-  */
 
- module.exports = {
 
-     root: true,
 
-     env: {
 
-         node: true,
 
-         "vue/setup-compiler-macros": true,
 
-     },
 
-     extends: [
 
-         "plugin:vue/vue3-essential",
 
-         "eslint:recommended",
 
-     ],
 
-     parserOptions: {
 
-         // parser: "@babel/eslint-parser",
 
-     },
 
-     // "writable" 以允许重写变量,或 "readonly" 不允许重写变量
 
-     globals: {
 
-         XE: "readonly",
 
-         VE_ENV: "readonly",
 
-         VE_API: "readonly",
 
-         LZ_WARNS: "readonly",
 
-         uni: true,
 
-     },
 
-     rules: {
 
-         indent: [2, 4, { SwitchCase: 1 }],
 
-         // "prettier/prettier": [2, { tabWidth: 4, endOfLine: "auto" }],
 
-         "prettier/prettier": "off",
 
-         "no-console": "warn",
 
-         "no-debugger": "warn",
 
-         "no-unused-vars": "off",
 
-         "no-useless-escape": "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,
 
-     },
 
- };
 
 
  |