diff --git a/.env b/.env deleted file mode 100644 index 20ee9a9..0000000 --- a/.env +++ /dev/null @@ -1,2 +0,0 @@ -# title -VITE_APP_TITLE = Uni-app Vue3 Ts --Vite diff --git a/.env.development b/.env.development deleted file mode 100644 index a1198d3..0000000 --- a/.env.development +++ /dev/null @@ -1,14 +0,0 @@ -# 运行环境 -VITE_ENV = development - -# 是否使用模拟数据 -VITE_USE_MOCK = true - -VITE_PORT = 3000 - -# BASE_URL -VITE_BASE_URL = /api/v1 - -# 上传域名 -VITE_UPLOAD_URL = /upload - diff --git a/.env.production b/.env.production deleted file mode 100644 index a170745..0000000 --- a/.env.production +++ /dev/null @@ -1,12 +0,0 @@ -# 运行环境 -VITE_ENV = production - -# 是否使用模拟数据 -VITE_USE_MOCK = true - -# api域名 -VITE_BASE_URL = /api/v1 - - -# 上传域名 -VITE_UPLOAD_URL = /upload diff --git a/.eslintrc.cjs b/.eslintrc.cjs deleted file mode 100644 index 53c7743..0000000 --- a/.eslintrc.cjs +++ /dev/null @@ -1,77 +0,0 @@ -// 参考:https://eslint.bootcss.com/docs/rules/ -// 参考:https://blog.csdn.net/x550392236/article/details/89497202 -// 参考:https://blog.csdn.net/brokenkay/article/details/111106266 - -module.exports = { - root: true, - /**环境提供预定义的全局变量 */ - env: { - /**Node.js全局变量和Node.js范围 */ - node: true, - /**浏览器全局变量 */ - browser: true, - }, - /**定义ESLint的解析器 */ - parser: 'vue-eslint-parser', - parserOptions: { - ecmaVersion: 'latest', - sourceType: 'module', - parser: '@typescript-eslint/parser', - }, - /**定义文件继承的子规范 */ - extends: ['eslint:recommended', 'plugin:vue/vue3-essential', 'plugin:@typescript-eslint/recommended','./.eslintrc-auto-import.json'], - plugins: ['vue', '@typescript-eslint'], - rules: { - 'no-var': 'error', //要求使用 let 或 const 而不是 var - camelcase: 'error', // 双峰驼命名格式 - indent: ['error', 4, { SwitchCase: 1 }], //代码缩进2个空格 - semi: ['error', 'always'], //行尾需要有分号 - quotes: ['error', 'single'], //强制使用一致的反勾号、双引号或单引号 - 'linebreak-style': ['error', 'windows'], //强制使用一致的换行风格,"unix":\n 表示 LF , "windows":\r\n 表示 CRLF - eqeqeq: ['error', 'always', { null: 'ignore' }], //比较时强制使用 === 或者 !==,但对null作比较时可以不用全等 - 'no-unused-vars': 'off', - '@typescript-eslint/no-unused-vars': [ - 'warn', - { - argsIgnorePattern: '^_', - varsIgnorePattern: '^_', - }, - ], //不允许使用未使用的变量 - '@typescript-eslint/no-explicit-any': 'off', //不允许任何类型 - '@typescript-eslint/no-empty-function': 'off', //不允许空函数 - 'vue/html-indent': ['error', 4], //在