ci: 修改文件并lint

This commit is contained in:
佚名程序员 2023-03-08 10:25:12 +08:00
parent 8de364c82f
commit d5848bdb76
12 changed files with 148 additions and 187 deletions

View File

@ -1,15 +1,22 @@
// 参考https://eslint.bootcss.com/docs/rules/
// 参考https://blog.csdn.net/x550392236/article/details/89497202
// 参考https://blog.csdn.net/brokenkay/article/details/111106266
module.exports = { module.exports = {
root: true,
env: { env: {
browser: true, node: true, //允许运行在node环境下
es2021: true, browser: true, //允许运行在浏览器环境下
es2021: true, //允许运行es2021环境下语法
}, },
parser: 'vue-eslint-parser', parser: 'vue-eslint-parser',
extends: ['plugin:@typescript-eslint/recommended', 'plugin:vue/vue3-essential', 'prettier'],
parserOptions: { parserOptions: {
ecmaVersion: 'latest', ecmaVersion: 'latest',
parser: '@typescript-eslint/parser',
sourceType: 'module', sourceType: 'module',
parser: '@typescript-eslint/parser',
}, },
extends: ['plugin:vue/vue3-essential', 'eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
plugins: ['vue', '@typescript-eslint', 'prettier'],
settings: { settings: {
'import/resolver': { 'import/resolver': {
alias: { alias: {
@ -18,16 +25,25 @@ module.exports = {
}, },
}, },
}, },
plugins: ['vue', '@typescript-eslint', 'prettier'], globals: {
//可以定义全局中的变量的权限(只读,可读可写)
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly',
uni: 'readonly',
},
rules: { rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-var': 'error', 'no-var': 'error', //要求使用 let 或 const 而不是 var
'prettier/prettier': 'error', 'prettier/prettier': 'error',
'vue/no-multiple-template-root': 'off', 'vue/no-multiple-template-root': 'off',
'no-mutating-props': 'off', 'no-mutating-props': 'off',
'vue/no-v-html': 'off', 'vue/no-v-html': 'off',
// @fixable 必须使用单引号,禁止使用双引号 camelcase: 'error', // 双峰驼命名格式
// indent: ['error', 4], //代码缩进4个空格 (switch时与prettier发生冲突)
eqeqeq: ['error', 'always', { null: 'ignore' }], //比较时强制使用 === 或者 !==,但对null作比较时可以不用全等
quotes: [ quotes: [
'error', 'error',
'single', 'single',
@ -35,7 +51,7 @@ module.exports = {
avoidEscape: true, avoidEscape: true,
allowTemplateLiterals: true, allowTemplateLiterals: true,
}, },
], ], // @fixable 必须使用单引号,禁止使用双引号
// 结尾必须有分号; // 结尾必须有分号;
semi: [ semi: [
'error', 'error',
@ -43,7 +59,7 @@ module.exports = {
{ {
omitLastInOneLineBlock: true, omitLastInOneLineBlock: true,
}, },
], ], // 结尾必须有分号;
'vue/script-setup-uses-vars': 'error', 'vue/script-setup-uses-vars': 'error',
'@typescript-eslint/ban-ts-ignore': 'off', '@typescript-eslint/ban-ts-ignore': 'off',
'@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-function-return-type': 'off',
@ -83,11 +99,4 @@ module.exports = {
'vue/attribute-hyphenation': 'off', 'vue/attribute-hyphenation': 'off',
'vue/require-default-prop': 'off', 'vue/require-default-prop': 'off',
}, },
globals: {
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly',
uni: 'readonly',
},
}; };

33
.gitignore vendored
View File

@ -1,11 +1,34 @@
node_modules # 日志
dist logs
.eslintcache *.log
.pnpm-lock.yaml npm-debug.log*
*.local yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
.DS_Store
dist
dist-ssr
coverage
*.local
.eslintcache
/cypress/videos/
/cypress/screenshots/
# 编辑器目录和文件 # 编辑器目录和文件
.vscode/*
.hbuilderx/*
!.vscode/extensions.json
!.vscode/settings.json
.idea .idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
.eslintcache
.hbuilderx .hbuilderx
pnpm-lock.yaml pnpm-lock.yaml

View File

@ -1,9 +1,10 @@
{ {
"recommendations": [ "recommendations": [
"CodeInChinese.EnglishChineseDictionary", // () "Vue.volar", // Vue
"kisstkondoros.vscode-gutter-preview", // Image "Vue.vscode-typescript-vue-plugin", // TS使TS*.vue
"ritwickdey.LiveServer", // "esbenp.prettier-vscode", //
"dbaeumer.vscode-eslint", //
"antfu.unocss", // UnoCSS css "antfu.unocss", // UnoCSS css
"esbenp.prettier-vscode" // "mrmlnc.vscode-autoprefixer" //less/scss/css
] ]
} }

View File

@ -4,10 +4,11 @@
"editor.defaultFormatter": "esbenp.prettier-vscode", // , "editor.defaultFormatter": "esbenp.prettier-vscode", // ,
"editor.formatOnSave": true, // "editor.formatOnSave": true, //
"editor.detectIndentation": false, // #editor.tabSize# #editor.insertSpaces# "editor.detectIndentation": false, // #editor.tabSize# #editor.insertSpaces#
"editor.tabSize": 4, "editor.tabSize": 4, // #editor.detectIndentation#
"editor.codeActionsOnSave": { "editor.codeActionsOnSave": {
"source.fixAll": true, // "source.fixAll": true, //
"source.fixAll.eslint": true, "source.fixAll.eslint": true,
"source.fixAll.stylelint": true "source.fixAll.stylelint": true
} // }, //
"files.eol": "\n" //.prettierrc.cjs
} }

View File

@ -1,21 +1,24 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="zh">
<head>
<meta charset="UTF-8" /> <head>
<script> <meta charset="UTF-8" />
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)')); <script>
document.write( var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'));
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + document.write(
(coverSupport ? ', viewport-fit=cover' : '') + '<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
'" />', (coverSupport ? ', viewport-fit=cover' : '') +
); '" />',
</script> );
<title></title> </script>
<!--preload-links--> <title></title>
<!--app-context--> <!--preload-links-->
</head> <!--app-context-->
<body> </head>
<div id="app"><!--app-html--></div>
<script type="module" src="/src/main.ts"></script> <body>
</body> <div id="app"><!--app-html--></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html> </html>

View File

@ -88,8 +88,7 @@
"unocss": "^0.46.5", "unocss": "^0.46.5",
"unocss-preset-weapp": "^0.2.5", "unocss-preset-weapp": "^0.2.5",
"unplugin-vue-components": "^0.22.12", "unplugin-vue-components": "^0.22.12",
"vite": "^4.1.4", "vite": "^4.1.4"
"vite-plugin-eslint": "^1.8.1"
}, },
"husky": { "husky": {
"hooks": { "hooks": {

View File

@ -1 +1,2 @@
import { request } from '@/utils/http'; // import { request } from '@/utils/http';
export {};

View File

@ -1,5 +1,5 @@
import { types } from 'sass'; // import { types } from 'sass';
import Boolean = types.Boolean; // import Boolean = types.Boolean;
export interface Route extends Record<string, any> { export interface Route extends Record<string, any> {
path: string; path: string;

View File

@ -20,7 +20,7 @@ export function judgePlatform(target: PLATFORMS): boolean {
let isMpLark = false; let isMpLark = false;
let isMpQq = false; let isMpQq = false;
let isMpKuaishou = false; let isMpKuaishou = false;
let isMpJd = false; // let isMpJd = false;
let isMp360 = false; let isMp360 = false;
let isQuickAppWebView = false; let isQuickAppWebView = false;
let isQuickAppWebViewUnion = false; let isQuickAppWebViewUnion = false;
@ -32,111 +32,93 @@ export function judgePlatform(target: PLATFORMS): boolean {
isVue3 = true; isVue3 = true;
/* #endif */ /* #endif */
return isVue3; return isVue3;
break;
case PLATFORMS.APP_PLUS: case PLATFORMS.APP_PLUS:
/* #ifdef APP-PLUS */ /* #ifdef APP-PLUS */
isAppPlus = true; isAppPlus = true;
/* #endif */ /* #endif */
return isAppPlus; return isAppPlus;
break;
case PLATFORMS.APP_PLUS_NVUE: case PLATFORMS.APP_PLUS_NVUE:
/* #ifdef APP-PLUS-NVUE */ /* #ifdef APP-PLUS-NVUE */
isAppPlusNvue = true; isAppPlusNvue = true;
/* #endif */ /* #endif */
return isAppPlusNvue; return isAppPlusNvue;
break;
case PLATFORMS.APP_NVUE: case PLATFORMS.APP_NVUE:
/* #ifdef APP-NVUE */ /* #ifdef APP-NVUE */
isAppNvue = true; isAppNvue = true;
/* #endif */ /* #endif */
return isAppNvue; return isAppNvue;
break;
case PLATFORMS.H5: case PLATFORMS.H5:
/* #ifdef H5 */ /* #ifdef H5 */
isH5 = true; isH5 = true;
/* #endif */ /* #endif */
return isH5; return isH5;
break;
case PLATFORMS.MP: case PLATFORMS.MP:
/* #ifdef MP */ /* #ifdef MP */
isMp = true; isMp = true;
/* #endif */ /* #endif */
return isMp; return isMp;
break;
case PLATFORMS.MP_WEIXIN: case PLATFORMS.MP_WEIXIN:
/* #ifdef MP-WEIXIN */ /* #ifdef MP-WEIXIN */
isMpWeinxin = true; isMpWeinxin = true;
/* #endif */ /* #endif */
return isMpWeinxin; return isMpWeinxin;
break;
case PLATFORMS.MP_ALIPAY: case PLATFORMS.MP_ALIPAY:
/* #ifdef MP-ALIPAY */ /* #ifdef MP-ALIPAY */
isMpAlipay = true; isMpAlipay = true;
/* #endif */ /* #endif */
return isMpAlipay; return isMpAlipay;
break;
case PLATFORMS.MP_BAIDU: case PLATFORMS.MP_BAIDU:
/* #ifdef MP_BAIDU */ /* #ifdef MP_BAIDU */
isMpBaidu = true; isMpBaidu = true;
/* #endif */ /* #endif */
return isMpBaidu; return isMpBaidu;
break;
case PLATFORMS.MP_TOUTIAO: case PLATFORMS.MP_TOUTIAO:
/* #ifdef MP-TOUTIAO */ /* #ifdef MP-TOUTIAO */
isMpToutiao = true; isMpToutiao = true;
/* #endif */ /* #endif */
return isMpToutiao; return isMpToutiao;
break;
case PLATFORMS.MP_LARK: case PLATFORMS.MP_LARK:
/* #ifdef MP-LARK */ /* #ifdef MP-LARK */
isMpLark = true; isMpLark = true;
/* #endif */ /* #endif */
return isMpLark; return isMpLark;
break;
case PLATFORMS.MP_QQ: case PLATFORMS.MP_QQ:
/* #ifdef MP-QQ */ /* #ifdef MP-QQ */
isMpQq = true; isMpQq = true;
/* #endif */ /* #endif */
return isMpQq; return isMpQq;
break;
case PLATFORMS.MP_KUAISHOU: case PLATFORMS.MP_KUAISHOU:
/* #ifdef MP-KUAISHOU */ /* #ifdef MP-KUAISHOU */
isMpKuaishou = true; isMpKuaishou = true;
/* #endif */ /* #endif */
return isMpKuaishou; return isMpKuaishou;
break; // case PLATFORMS.MP_JD:
case PLATFORMS.MP_JD: // /* #ifdef MP-JD */
/* #ifdef MP-JD */ // isMpJd = true;
isMpJd = true; // /* #endif */
/* #endif */ // return (isMpJd = true);
return (isMpJd = true); // break;
break;
case PLATFORMS.MP_360: case PLATFORMS.MP_360:
/* #ifdef MP-360 */ /* #ifdef MP-360 */
isMp360 = true; isMp360 = true;
/* #endif */ /* #endif */
return isMp360; return isMp360;
break;
case PLATFORMS.QUICKAPP_WEBVIEW: case PLATFORMS.QUICKAPP_WEBVIEW:
/* #ifdef QUICKAPP-WEBVIEW */ /* #ifdef QUICKAPP-WEBVIEW */
isQuickAppWebView = true; isQuickAppWebView = true;
/* #endif */ /* #endif */
return isQuickAppWebView; return isQuickAppWebView;
break;
case PLATFORMS.QUICKAPP_WEBVIEW_UNION: case PLATFORMS.QUICKAPP_WEBVIEW_UNION:
/* #ifdef QUICKAPP-WEBVIEW-UNION */ /* #ifdef QUICKAPP-WEBVIEW-UNION */
isQuickAppWebViewUnion = true; isQuickAppWebViewUnion = true;
/* #endif */ /* #endif */
return isQuickAppWebViewUnion; return isQuickAppWebViewUnion;
break;
case PLATFORMS.QUICKAPP_WEBVIEW_HUAWEI: case PLATFORMS.QUICKAPP_WEBVIEW_HUAWEI:
/* #ifdef QUICKAPP-WEBVIEW-HUAWEI */ /* #ifdef QUICKAPP-WEBVIEW-HUAWEI */
isQuickAppWebViewHuawei = true; isQuickAppWebViewHuawei = true;
/* #endif */ /* #endif */
return isQuickAppWebViewHuawei; return isQuickAppWebViewHuawei;
break;
default: default:
return false; return false;
} }
return false;
} }

View File

@ -1,54 +1,25 @@
{ {
/* */
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], //
"exclude": [], //
//使 ** *
/* */
"compilerOptions": { "compilerOptions": {
"target": "esnext", // "target": "ESNext", //
"useDefineForClassFields": true, //ecmascript "useDefineForClassFields": true, //ECMAScript
"module": "esnext", // "module": "ESNext", //
"moduleResolution": "node", //TypeScript "moduleResolution": "Node", //TypeScript
"jsx": "preserve", //JSX
"sourceMap": true, //JavaScript
"esModuleInterop": true, // export=import from
"lib": ["esnext", "dom"], // TS
"types": ["@dcloudio/types"],
// "allowJs": true, // JSJSX
// "checkJs": false, // JSallowJS使
"removeComments": true, //
"paths": {
"@/*": ["./src/*"]
}, //
/* */
"strict": true, // "strict": true, //
"alwaysStrict": true, // 'use strict' "jsx": "preserve", //JSX
"noImplicitAny": true, // any "resolveJsonModule": true, // JSON
"noImplicitThis": true, // thisany "isolatedModules": true, //
"strictNullChecks": true, // nullundefined "esModuleInterop": true, // JavaScriptCommon/S使allowsyntheticdefaulultimports
"strictBindCallApply": true, // bindcallapply "removeComments": true, //
"strictFunctionTypes": true, // "types": ["@dcloudio/types"],
"strictPropertyInitialization": true, // "paths": { "@/*": ["./src/*"] }, //
"lib": ["ESNext", "DOM"], // TS
/* */ "skipLibCheck": true, // .d.ts
"noUnusedLocals": true, //使 "noEmit": true, //
"noUnusedParameters": true, //使
"noImplicitReturns": true, //
"noImplicitOverride": true, //
"noFallthroughCasesInSwitch": true, //switchcase使break
"noUncheckedIndexedAccess": true, //
"noPropertyAccessFromIndexSignature": false, //" . “(obj.key) 语法访问字段和"( obj[key])
/* */
"experimentalDecorators": true, // JavaScript
"emitDecoratorMetadata": true, //
/* */
"forceConsistentCasingInFileNames": true, //
"extendedDiagnostics": false, // TS
"noEmitOnError": true, // "noEmitOnError": true, //
"resolveJsonModule": true // JSON "forceConsistentCasingInFileNames": true, //
} "experimentalDecorators": true, // JavaScript
"emitDecoratorMetadata": true //
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }] // TypeScript 3.0
} }

9
tsconfig.node.json Normal file
View File

@ -0,0 +1,9 @@
{
"compilerOptions": {
"composite": true,
"module": "ESNext",
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true
},
"include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"]
}

View File

@ -1,67 +1,26 @@
import { ConfigEnv, UserConfig } from 'vite'; // Vite中文网https://vitejs.cn/config/
import uni from '@dcloudio/vite-plugin-uni'; import { ConfigEnv, loadEnv, UserConfig } from 'vite';
import eslintPlugin from 'vite-plugin-eslint';
import { resolve } from 'path'; import { resolve } from 'path';
import { loadEnv } from 'vite'; import uni from '@dcloudio/vite-plugin-uni';
import Unocss from 'unocss/vite'; import Unocss from 'unocss/vite';
//发布时动态修改 manifest.json
// if (process.env.NODE_ENV === 'production') {
// // 读取 manifest.json ,修改后重新写入
// const fs = require('fs');
// const manifestPath = './src/manifest.json';
// let Manifest = fs.readFileSync(manifestPath, { encoding: 'utf-8' });
// function replaceManifest(path: string, value: any) {
// const arr = path.split('.');
// const len = arr.length;
// const lastItem = arr[len - 1];
// let i = 0;
// let ManifestArr = Manifest.split(/\n/);
// for (let index = 0; index < ManifestArr.length; index++) {
// const item = ManifestArr[index];
// if (new RegExp(`"${arr[i]}"`).test(item)) ++i;
// if (i === len) {
// const hasComma = /,/.test(item);
// ManifestArr[index] = item.replace(new RegExp(`"${lastItem}"[\\s\\S]*:[\\s\\S]*`), `"${lastItem}": ${value}${hasComma ? ',' : ''}`);
// break;
// }
// }
// Manifest = ManifestArr.join('\n');
// }
// let Data1 = new Date().toLocaleDateString();
// let Data2 = new Date().toLocaleTimeString();
// let Data_ = Data1.replace(/\//g, '-') + ' ' + Data2;
// // 使用
// replaceManifest('description', JSON.stringify(`app平台-${Data_}`));
// replaceManifest(
// 'versionName',
// JSON.stringify(
// String(Number(JSON.parse(Manifest).versionCode) + 1)
// .split('')
// .join('.')
// )
// );
// replaceManifest('versionCode', JSON.stringify(String(Number(JSON.parse(Manifest).versionCode) + 1)));
// fs.writeFileSync(manifestPath, Manifest, { flag: 'w' });
// }
// https://vitejs.cn/config/
export default ({ mode }: ConfigEnv): UserConfig => { export default ({ mode }: ConfigEnv): UserConfig => {
const root = process.cwd(); const root = process.cwd();
const env = loadEnv(mode, root); const env = loadEnv(mode, root);
return { return {
base: './', base: './',
// 设置路径别名
resolve: { resolve: {
alias: { alias: {
'@': resolve('./src'), '@': resolve('./src'),
}, },
extensions: ['.js', '.json', '.ts', '.vue'], // 使用路径别名时想要省略的后缀名,可以自己 增减
}, },
// 自定义全局变量
define: { define: {
'process.env': {}, 'process.env': {},
}, },
// 开发服务器配置
server: { server: {
host: true, host: true,
// open: true, // open: true,
@ -79,21 +38,24 @@ export default ({ mode }: ConfigEnv): UserConfig => {
}, },
}, },
}, },
plugins: [ // 构建配置
uni(), build: {
Unocss(), outDir: 'dist',
// eslintPlugin({ chunkSizeWarningLimit: 1500,
// include: ['src/**/*.js', 'src/**/*.vue', 'src/**/*.ts'], rollupOptions: {
// exclude: ['./node_modules/**'], output: {
// cache: false, entryFileNames: `assets/[name].${new Date().getTime()}.js`,
// }), chunkFileNames: `assets/[name].${new Date().getTime()}.js`,
], assetFileNames: `assets/[name].${new Date().getTime()}.[ext]`,
css: { compact: true,
preprocessorOptions: { // manualChunks: {
scss: { // vue: ['vue', 'vue-router', 'vuex'],
// additionalData: '@import "@/assets/style/main.scss";', // echarts: ['echarts'],
// },
}, },
}, },
}, },
// 插件
plugins: [uni(), Unocss()],
}; };
}; };