Merge pull request !7 from 佚名程序员/master
This commit is contained in:
h_mo 2023-03-13 11:13:08 +00:00 committed by Gitee
commit 421aad8d6b
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
16 changed files with 225 additions and 267 deletions

View File

@ -1,20 +0,0 @@
# 忽略目录
/dist
/build
/tests
/node_modules
/public
/src/public
/src/static
/src/manifest.json
/vite.config.ts
/unocss.config.js
# node 覆盖率文件
coverage/
# 忽略文件
**/*-min.js
**/*.min.js
**/*-min.css
**/*.min.css

75
.eslintrc.cjs Normal file
View File

@ -0,0 +1,75 @@
// 参考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'],
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', 'unix'], //强制使用一致的换行风格,"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], //在<template>中强制一致缩进
'vue/singleline-html-element-content-newline': 'off', //要求在单行元素的内容之前和之后有一个换行符
'vue/max-attributes-per-line': 'off', //执行每行的最大属性数(被 prettier 最大单行控制了暂off)
'vue/multi-word-component-names': 'off', //要求组件名称始终为多字
'@typescript-eslint/ban-ts-comment': 'off', // 不允许@ts-<指令>评论或要求指令后的描述
'@typescript-eslint/ban-types': 'off', // 不允许某些类型
'@typescript-eslint/no-non-null-assertion': 'off', // 不允许使用!后缀操作符的非空断言
},
globals: {
//可以定义全局中的变量的权限(只读,可读可写)
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly',
uni: 'readonly',
},
ignorePatterns: [
// # 忽略目录
'/dist',
'/public',
'/src/public',
'/src/static',
'/node_modules',
// # 忽略文件
'**/*-min.js',
'**/*.min.js',
'**/*-min.css',
'**/*.min.css',
'**/*.tsbuildinfo',
'**/*.config.js',
'**/*.config.ts',
'/src/manifest.json',
],
};

View File

@ -1,102 +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: true, //允许运行在node环境下
browser: true, //允许运行在浏览器环境下
es2021: true, //允许运行es2021环境下语法
},
parser: 'vue-eslint-parser',
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
parser: '@typescript-eslint/parser',
},
extends: ['plugin:vue/vue3-essential', 'eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
plugins: ['vue', '@typescript-eslint', 'prettier'],
settings: {
'import/resolver': {
alias: {
map: [['@', './src']],
extensions: ['.ts', '.js', '.jsx', '.json'],
},
},
},
globals: {
//可以定义全局中的变量的权限(只读,可读可写)
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly',
uni: 'readonly',
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-var': 'error', //要求使用 let 或 const 而不是 var
'prettier/prettier': 'error',
'vue/no-multiple-template-root': 'off',
'no-mutating-props': 'off',
'vue/no-v-html': 'off',
camelcase: 'error', // 双峰驼命名格式
// indent: ['error', 4], //代码缩进4个空格 (switch时与prettier发生冲突)
eqeqeq: ['error', 'always', { null: 'ignore' }], //比较时强制使用 === 或者 !==,但对null作比较时可以不用全等
quotes: [
'error',
'single',
{
avoidEscape: true,
allowTemplateLiterals: true,
},
], // @fixable 必须使用单引号,禁止使用双引号
// 结尾必须有分号;
semi: [
'error',
'always',
{
omitLastInOneLineBlock: true,
},
], // 结尾必须有分号;
'vue/script-setup-uses-vars': 'error',
'@typescript-eslint/ban-ts-ignore': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-empty-function': 'off',
'vue/custom-event-name-casing': 'off',
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-unused-vars': [
'warn',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
},
],
'no-unused-vars': [
'warn',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
},
],
'space-before-function-paren': 'off',
'vue/attributes-order': 'off',
'vue/v-on-event-hyphenation': 'off',
'vue/multi-word-component-names': 'off',
'vue/one-component-per-file': 'off',
'vue/html-closing-bracket-newline': 'off',
'vue/max-attributes-per-line': 'off',
'vue/multiline-html-element-content-newline': 'off',
'vue/singleline-html-element-content-newline': 'off',
'vue/attribute-hyphenation': 'off',
'vue/require-default-prop': 'off',
},
};

38
.gitignore vendored
View File

@ -1,34 +1,10 @@
# 日志
logs
*.log
npm-debug.log*
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/*
# 忽略目录
/dist
/node_modules
.hbuilderx/*
!.vscode/extensions.json
!.vscode/settings.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# 忽略文件
*.log
**/*.tsbuildinfo
.eslintcache
.hbuilderx
pnpm-lock.yaml

View File

@ -1,37 +0,0 @@
module.exports = {
// .pellerrc 的架构 官网参考https://prettier.io/docs/en/options.html#tab-width
$schema: 'https://json.schemastore.org/prettierrc',
// 一行最多 120 字符
printWidth: 160,
// 使用 4 个空格缩进
tabWidth: 4,
// 不使用 tab 缩进,而使用空格
useTabs: false,
// 行尾需要有分号
semi: true,
// 使用单引号代替双引号
singleQuote: true,
// 对象的 key 仅在必要时用引号
quoteProps: 'as-needed',
// jsx 不使用单引号,而使用双引号
jsxSingleQuote: false,
// 末尾使用逗号
trailingComma: 'all',
// 大括号内的首尾需要空格 { foo: bar }
bracketSpacing: true,
// 箭头函数,只有一个参数的时候,也需要括号
arrowParens: 'always',
// 每个文件格式化的范围是文件的全部内容
rangeStart: 0,
rangeEnd: Infinity,
// 不需要写文件开头的 @prettier
requirePragma: false,
// 不需要自动在文件开头插入 @prettier
insertPragma: false,
// 使用默认的折行标准
proseWrap: 'preserve',
// 根据显示样式决定 html 要不要折行
htmlWhitespaceSensitivity: 'css',
// 换行符使用 lf
endOfLine: 'lf',
};

View File

@ -1,18 +1,15 @@
# 忽略目录
/dist
/build
/tests
/node_modules
/public
/src/public
/node_modules
/src/static
/src/manifest.json
# node 覆盖率文件
coverage/
# 忽略文件
**/*-min.js
**/*.min.js
**/*-min.css
**/*.min.css
**/*.tsbuildinfo
/src/manifest.json
.eslintcache

View File

@ -1,10 +1,12 @@
//////////////////////////////////
// //
/////////////////////////////////
{
"recommendations": [
"Vue.volar", // Vue
"Vue.vscode-typescript-vue-plugin", // TS使TS*.vue
"esbenp.prettier-vscode", //
"dbaeumer.vscode-eslint", //
"antfu.unocss", // UnoCSS css
"mrmlnc.vscode-autoprefixer" //less/scss/css
"dbaeumer.vscode-eslint" //
]
}

32
.vscode/settings.json vendored
View File

@ -1,14 +1,28 @@
{
// https://blog.csdn.net/weixin_46238462/article/details/125867532
////////////////////////////////////////////////////////////////////////////
// vscode ////////////////////////////////////////////////
// https://blog.csdn.net/weixin_46238462/article/details/125867532 //
//////////////////////////////////////////////////////////////////////////
"editor.defaultFormatter": "esbenp.prettier-vscode", // ,
"editor.formatOnSave": true, //
"editor.detectIndentation": false, // #editor.tabSize# #editor.insertSpaces#
"editor.tabSize": 4, // #editor.detectIndentation#
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.detectIndentation": false,
"editor.tabSize": 4,
"editor.codeActionsOnSave": {
"source.fixAll": true, //
"source.fixAll": true,
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
}, //
"files.eol": "\n" //.prettierrc.cjs
},
"files.eol": "\n",
"eslint.enable": true,
//////////////////////////////////////////////////////////////////
// https://prettier.io/docs/en/options.html#tab-width //
////////////////////////////////////////////////////////////////
"prettier.enable": true,
"prettier.semi": true,
"prettier.tabWidth": 4,
"prettier.printWidth": 160,
"prettier.singleQuote": true,
"prettier.ignorePath": "./.vscode/prettierignore"
}

View File

@ -151,20 +151,57 @@ pnpm up
npx @dcloudio/uvm 3.7.2.20230217-alpha
```
## Git 贡献提交规范
## Gitee 参与贡献
- 参考 [vue](https://github.com/vuejs/vue/blob/dev/.github/COMMIT_CONVENTION.md) 规范 ([Angular](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular))
1. Fork 本仓库
2. 新建 Feat_xxx 分支
3. 提交代码
4. 新建 Pull Request
- `feat` 增加新功能
- `fix` 修复问题/BUG
- `style` 代码风格相关无影响运行结果的
- `perf` 优化/性能提升
- `refactor` 重构
- `revert` 撤销修改
- `test` 测试相关
- `docs` 文档/注释
- `chore` 依赖更新/脚手架配置修改等
- `workflow` 工作流改进
- `ci` 持续集成
- `types` 类型定义文件更改
- `wip` 开发中
## [Gitee 贡献提交规范](https://www.conventionalcommits.org/zh-hans/v1.0.0/)
### 提交类型
| 提交类型 | 标题 | 描述 |
| ---------- | ------------------ | ------------------------------------------------------------------------------------- |
| `feat` | 特征 | 新功能、新特性 |
| `fix` | Bug 修复 | bug 修复 |
| `docs` | 文档 | 仅文档更改 |
| `style` | 风格 | 不影响代码含义的更改(空格、格式、缺少分号等) |
| `refactor` | 代码重构 | 重构,在不影响代码内部行为,功能下的代码修改 |
| `perf` | 性能改进 | 更改代码,以提高性能 |
| `test` | 测试 | 添加缺失的测试或纠正现有的测试 |
| `build` | 构建 | 影响构建系统或外部依赖项的更改示例范围gulp、broccoli、npm |
| `ci` | 持续集成 | 对我们的 CI 配置文件和脚本的更改示例范围Travis、Circle、BrowserStack、SauceLabs |
| `chore` | 其他文件修改 | 不修改 src 或测试文件的其他更改 |
| `revert` | 还原 | 恢复之前的提交 |
| `release` | 发布新版本 | \- |
| `workflow` | 工作流相关文件修改 | \- |
### 提交别名
| 提交类型 | 映射到 | 标题 | 描述 |
| ------------------ | ------- | -------- | -------------------------- |
| `initial` | `feat` | 最初的 | 初始提交 |
| `dependencies` | `fix` | 依赖项 | 更新依赖项 |
| `peerDependencies` | `fix` | 对等依赖 | 更新对等依赖项 |
| `devDependencies` | `chore` | 开发依赖 | 更新开发依赖 |
| `metadata` | `fix` | 元数据 | 更新元数据package.json |
### 快捷别名提示
1. resolve a conflict解决冲突
2. merge branch合并分支
3. feat: [...] : 添加的新功能说明
4. fix: [...] : 修复的 bug 说明
5. initial project初始化项目
6. style: [...] : 修改的样式范围
7. perf[...] : 优化的范围
8. release : 发布新版本
9. docs: 文档修改
10. refactor 代码重构
11. revert 还原之前的版本
12. dependencies 依赖项修改
13. devDependencies 开发依赖修改
14. review复习回顾
15. strengthen: 加强,巩固

View File

@ -30,8 +30,7 @@
"build:quickapp-webview": "uni build -p quickapp-webview",
"build:quickapp-webview-huawei": "uni build -p quickapp-webview-huawei",
"build:quickapp-webview-union": "uni build -p quickapp-webview-union",
"lint": "eslint --cache --max-warnings 0 \"src/**/*.{vue,ts}\" --fix",
"format": "prettier --write src/",
"eslint": "eslint --max-warnings 0 \"src/**/*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}\" --fix",
"prepare": "husky install"
},
"dependencies": {
@ -56,8 +55,7 @@
"luch-request": "^3.0.8",
"pinia": "^2.0.33",
"qs": "^6.11.1",
"vue": "^3.2.47",
"vue-i18n": "^9.2.2"
"vue": "^3.2.47"
},
"devDependencies": {
"@dcloudio/types": "^3.2.11",
@ -75,8 +73,6 @@
"@unocss/preset-icons": "^0.46.5",
"autoprefixer": "^10.4.13",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
@ -96,7 +92,7 @@
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"prettier --write",
"eslint --max-warnings 0 --fix",
"git add"
]
}

View File

@ -21,8 +21,8 @@ export default defineComponent({
default: '',
},
},
setup(props) {
const _props = props;
setup(_props) {
// const _props = props;
return {};
},
});

View File

@ -1,6 +1,7 @@
<script lang="ts" setup name="Iconify">
import { computed, ref, unref } from 'vue';
import { assign } from 'lodash-es';
import { isBoolean } from '@/utils/is';
const props = defineProps({
icon: {
@ -15,8 +16,9 @@ const props = defineProps({
});
const iconSize = ref<string | boolean>(props.size ? `${props.size}rpx` : false);
const style = computed(() => {
return assign(unref(iconSize) ? { width: unref(iconSize), height: unref(iconSize) } : {}, props.color ? { color: props.color } : {});
let style = computed(() => {
let ISize = unref(iconSize);
return assign({ width: isBoolean(ISize) ? '' : ISize, height: isBoolean(ISize) ? '' : ISize }, { color: props.color });
});
const emit = defineEmits(['click']);

View File

@ -70,10 +70,10 @@ const onBackHome = () => {
<slot name="left">
<view class="_u_h-full _u_flex _u_items-center">
<template v-if="backShow">
<Iconify @click="onBack" :size="navbarLeftIconSize" :color="navbarTitleColor" icon="i-humbleicons-chevron-left" />
<Iconify @click="onBack" :size="navbarLeftIconSize" :color="navbarTitleColor===true?undefined:navbarTitleColor" icon="i-humbleicons-chevron-left" />
</template>
<template v-if="backHomeShow">
<Iconify @click="onBackHome" :size="navbarLeftIconSize" :color="navbarTitleColor" icon="i-iconoir-home-simple-door" />
<Iconify @click="onBackHome" :size="navbarLeftIconSize" :color="navbarTitleColor===true?undefined:navbarTitleColor" icon="i-iconoir-home-simple-door" />
</template>
</view>
</slot>

View File

@ -33,6 +33,6 @@ export function jumpLogin(path: string) {
* @param prefix
*/
export function filterPath(url: string, prefix = '') {
const path = url.split('?')[0];
const path = url.split('?')[0] || '';
return prefix + (path.startsWith('/') ? path.substring(1) : path);
}

View File

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

View File

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