mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
ci:修改.prettierrc.cjs、package.json并格式化
This commit is contained in:
parent
d663378365
commit
8de364c82f
@ -1,21 +1,19 @@
|
|||||||
# eslint 忽略检查 (根据项目需要自行添加)
|
# 忽略目录
|
||||||
node_modules
|
/dist
|
||||||
dist
|
/build
|
||||||
.idea
|
/tests
|
||||||
.vscode
|
/node_modules
|
||||||
.hbuilderx
|
|
||||||
src/manifest.json
|
|
||||||
src/pages.json
|
|
||||||
src/tmui/
|
|
||||||
*.sh
|
|
||||||
node_modules
|
|
||||||
*.md
|
|
||||||
*.woff
|
|
||||||
*.ttf
|
|
||||||
*.yaml
|
|
||||||
dist
|
|
||||||
/public
|
/public
|
||||||
/docs
|
/src/public
|
||||||
.husky
|
/src/static
|
||||||
.local
|
/src/manifest.json
|
||||||
/bin
|
/vite.config.ts
|
||||||
|
|
||||||
|
# node 覆盖率文件
|
||||||
|
coverage/
|
||||||
|
|
||||||
|
# 忽略文件
|
||||||
|
**/*-min.js
|
||||||
|
**/*.min.js
|
||||||
|
**/*-min.css
|
||||||
|
**/*.min.css
|
@ -4,11 +4,7 @@ module.exports = {
|
|||||||
es2021: true,
|
es2021: true,
|
||||||
},
|
},
|
||||||
parser: 'vue-eslint-parser',
|
parser: 'vue-eslint-parser',
|
||||||
extends: [
|
extends: ['plugin:@typescript-eslint/recommended', 'plugin:vue/vue3-essential', 'prettier'],
|
||||||
'plugin:@typescript-eslint/recommended',
|
|
||||||
'plugin:vue/vue3-essential',
|
|
||||||
'prettier',
|
|
||||||
],
|
|
||||||
parserOptions: {
|
parserOptions: {
|
||||||
ecmaVersion: 'latest',
|
ecmaVersion: 'latest',
|
||||||
parser: '@typescript-eslint/parser',
|
parser: '@typescript-eslint/parser',
|
||||||
|
@ -1,20 +1,18 @@
|
|||||||
# 忽略格式化文件 (根据项目需要自行添加)
|
# 忽略目录
|
||||||
node_modules
|
/dist
|
||||||
dist
|
/build
|
||||||
.idea
|
/tests
|
||||||
.vscode
|
/node_modules
|
||||||
.hbuilderx
|
|
||||||
src/manifest.json
|
|
||||||
src/pages.json
|
|
||||||
*.sh
|
|
||||||
node_modules
|
|
||||||
*.md
|
|
||||||
*.woff
|
|
||||||
*.ttf
|
|
||||||
*.yaml
|
|
||||||
dist
|
|
||||||
/public
|
/public
|
||||||
/docs
|
/src/public
|
||||||
.husky
|
/src/static
|
||||||
.local
|
/src/manifest.json
|
||||||
/bin
|
|
||||||
|
# node 覆盖率文件
|
||||||
|
coverage/
|
||||||
|
|
||||||
|
# 忽略文件
|
||||||
|
**/*-min.js
|
||||||
|
**/*.min.js
|
||||||
|
**/*-min.css
|
||||||
|
**/*.min.css
|
@ -1,25 +1,24 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
// 一行最多 160 字符
|
// .pellerrc 的架构 官网参考:https://prettier.io/docs/en/options.html#tab-width
|
||||||
|
$schema: 'https://json.schemastore.org/prettierrc',
|
||||||
|
// 一行最多 120 字符
|
||||||
printWidth: 160,
|
printWidth: 160,
|
||||||
// 不使用缩进符,而使用空格
|
// 使用 4 个空格缩进
|
||||||
useTabs: true,
|
|
||||||
// 使用 2 个空格缩进
|
|
||||||
tabWidth: 4,
|
tabWidth: 4,
|
||||||
tabSize: 4,
|
// 不使用 tab 缩进,而使用空格
|
||||||
|
useTabs: false,
|
||||||
// 行尾需要有分号
|
// 行尾需要有分号
|
||||||
semi: true,
|
semi: true,
|
||||||
// 使用单引号
|
// 使用单引号代替双引号
|
||||||
singleQuote: true,
|
singleQuote: true,
|
||||||
// 对象的 key 仅在必要时用引号 (可选值as-needed|consistent|preserve)
|
// 对象的 key 仅在必要时用引号
|
||||||
quoteProps: 'as-needed',
|
quoteProps: 'as-needed',
|
||||||
// jsx 不使用单引号,而使用双引号
|
// jsx 不使用单引号,而使用双引号
|
||||||
jsxSingleQuote: false,
|
jsxSingleQuote: false,
|
||||||
// 末尾不需要逗号 'es5' (可选值none|es5|all,默认none)
|
// 末尾使用逗号
|
||||||
trailingComma: 'es5',
|
trailingComma: 'all',
|
||||||
// 大括号内的首尾需要空格
|
// 大括号内的首尾需要空格 { foo: bar }
|
||||||
bracketSpacing: true,
|
bracketSpacing: true,
|
||||||
// jsx 标签的反尖括号需要换行
|
|
||||||
jsxBracketSameLine: false,
|
|
||||||
// 箭头函数,只有一个参数的时候,也需要括号
|
// 箭头函数,只有一个参数的时候,也需要括号
|
||||||
arrowParens: 'always',
|
arrowParens: 'always',
|
||||||
// 每个文件格式化的范围是文件的全部内容
|
// 每个文件格式化的范围是文件的全部内容
|
||||||
@ -29,12 +28,10 @@ module.exports = {
|
|||||||
requirePragma: false,
|
requirePragma: false,
|
||||||
// 不需要自动在文件开头插入 @prettier
|
// 不需要自动在文件开头插入 @prettier
|
||||||
insertPragma: false,
|
insertPragma: false,
|
||||||
// 使用默认的折行标准 (可选值always|never|preserve)
|
// 使用默认的折行标准
|
||||||
proseWrap: 'preserve',
|
proseWrap: 'preserve',
|
||||||
// 根据显示样式决定 html 要不要折行 (可选值css|strict|ignore)
|
// 根据显示样式决定 html 要不要折行
|
||||||
htmlWhitespaceSensitivity: 'css',
|
htmlWhitespaceSensitivity: 'css',
|
||||||
// vue脚本文件和样式的缩进
|
// 换行符使用 lf
|
||||||
vueIndentScriptAndStyle: false,
|
|
||||||
// 换行符使用 lf 结尾是 (可选值auto|lf|crlf|cr)
|
|
||||||
endOfLine: 'lf',
|
endOfLine: 'lf',
|
||||||
};
|
};
|
||||||
|
5
.vscode/extensions.json
vendored
5
.vscode/extensions.json
vendored
@ -4,7 +4,6 @@
|
|||||||
"kisstkondoros.vscode-gutter-preview", // Image 预览
|
"kisstkondoros.vscode-gutter-preview", // Image 预览
|
||||||
"ritwickdey.LiveServer", // 为静态和动态页面启动具有实时重载功能的本地开发服务器
|
"ritwickdey.LiveServer", // 为静态和动态页面启动具有实时重载功能的本地开发服务器
|
||||||
"antfu.unocss", // UnoCSS 原子化css
|
"antfu.unocss", // UnoCSS 原子化css
|
||||||
"esbenp.prettier-vscode", // 格式化
|
"esbenp.prettier-vscode" // 格式化
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
@ -9,5 +9,5 @@
|
|||||||
"source.fixAll": true, // 控制是否应在文件保存时运行自动修复操作。
|
"source.fixAll": true, // 控制是否应在文件保存时运行自动修复操作。
|
||||||
"source.fixAll.eslint": true,
|
"source.fixAll.eslint": true,
|
||||||
"source.fixAll.stylelint": true
|
"source.fixAll.stylelint": true
|
||||||
}, // 要在保存时运行的代码操作种类。
|
} // 要在保存时运行的代码操作种类。
|
||||||
}
|
}
|
24
README.md
24
README.md
@ -12,14 +12,14 @@
|
|||||||
## 简介
|
## 简介
|
||||||
|
|
||||||
- **uni-app Vue3 Vite4 pinia2 TypeScript 基础框架**
|
- **uni-app Vue3 Vite4 pinia2 TypeScript 基础框架**
|
||||||
- cli创建的Vue3/Vite项目 与 使用HBuilderX导入插件 的包有差异,请直接访问 [开源地址](https://gitee.com/h_mo/uniapp-vue3-vite-ts-template)
|
- cli 创建的 Vue3/Vite 项目 与 使用 HBuilderX 导入插件 的包有差异,请直接访问 [开源地址](https://gitee.com/h_mo/uniapp-vue3-vite-ts-template)
|
||||||
- 访问[uniapp插件](https://ext.dcloud.net.cn/plugin?id=8559)
|
- 访问[uniapp 插件](https://ext.dcloud.net.cn/plugin?id=8559)
|
||||||
|
|
||||||
|
|
||||||
### 说明
|
### 说明
|
||||||
- 框架完全基于Vue3 SFC `<script setup>` 写法,不支持Vue2;
|
|
||||||
|
- 框架完全基于 Vue3 SFC `<script setup>` 写法,不支持 Vue2;
|
||||||
- 可用于学习与交流;
|
- 可用于学习与交流;
|
||||||
- 目前测试H5、微信小程序,APP(Android),支付宝小程序通过;
|
- 目前测试 H5、微信小程序,APP(Android),支付宝小程序通过;
|
||||||
- 其他平台暂未测试,后续会增加;
|
- 其他平台暂未测试,后续会增加;
|
||||||
- 如发现问题或建议可在评论区留言, 或提[Issues](https://gitee.com/h_mo/uniapp-vue3-vite-ts-template/issues)及[PR](https://gitee.com/h_mo/uniapp-vue3-vite-ts-template/pulls),会及时处理;
|
- 如发现问题或建议可在评论区留言, 或提[Issues](https://gitee.com/h_mo/uniapp-vue3-vite-ts-template/issues)及[PR](https://gitee.com/h_mo/uniapp-vue3-vite-ts-template/pulls),会及时处理;
|
||||||
- 如有需求亦可在评论区留言,或在此项目基础上增加;
|
- 如有需求亦可在评论区留言,或在此项目基础上增加;
|
||||||
@ -28,11 +28,11 @@
|
|||||||
## 特性
|
## 特性
|
||||||
|
|
||||||
- **最新技术栈**:使用 Vue3/Vite4/pinia ,TypeScript 等前端前沿技术开发;
|
- **最新技术栈**:使用 Vue3/Vite4/pinia ,TypeScript 等前端前沿技术开发;
|
||||||
- **[Unocss](https://github.com/unocss/unocss)**: 原子化CSS, [iconify](https://github.com/iconify/iconify)图标
|
- **[Unocss](https://github.com/unocss/unocss)**: 原子化 CSS, [iconify](https://github.com/iconify/iconify)图标
|
||||||
- **Eslint/Prettier**: 规范代码格式,统一编码;
|
- **Eslint/Prettier**: 规范代码格式,统一编码;
|
||||||
- **路由拦截**: 基于uni.addInterceptor进行路由拦截;
|
- **路由拦截**: 基于 uni.addInterceptor 进行路由拦截;
|
||||||
- **请求拦截**: 核心使用 [luch-request](https://ext.dcloud.net.cn/plugin?id=392),支持请求和响应拦截等;
|
- **请求拦截**: 核心使用 [luch-request](https://ext.dcloud.net.cn/plugin?id=392),支持请求和响应拦截等;
|
||||||
- **缓存加密**: 使用AES加密缓存,可设置区分在开发或生成环境中是否加密;
|
- **缓存加密**: 使用 AES 加密缓存,可设置区分在开发或生成环境中是否加密;
|
||||||
|
|
||||||
## 目录结构
|
## 目录结构
|
||||||
|
|
||||||
@ -111,21 +111,16 @@
|
|||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## 预览
|
## 预览
|
||||||
|
|
||||||
- H5
|
- H5
|
||||||
|
|
||||||

|
||||||
)
|
|
||||||
|
|
||||||
- 小程序(体验版-需申请体验)
|
- 小程序(体验版-需申请体验)
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## 安装使用
|
## 安装使用
|
||||||
|
|
||||||
- 安装依赖
|
- 安装依赖
|
||||||
@ -155,6 +150,7 @@ pnpm up
|
|||||||
# 打开HBuilder X alpha桌面程序-->点击上面的帮助-->历次更新说明-->获取最新版本号(如:3.7.2.20230217-alpha)
|
# 打开HBuilder X alpha桌面程序-->点击上面的帮助-->历次更新说明-->获取最新版本号(如:3.7.2.20230217-alpha)
|
||||||
npx @dcloudio/uvm 3.7.2.20230217-alpha
|
npx @dcloudio/uvm 3.7.2.20230217-alpha
|
||||||
```
|
```
|
||||||
|
|
||||||
## Git 贡献提交规范
|
## Git 贡献提交规范
|
||||||
|
|
||||||
- 参考 [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))
|
- 参考 [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))
|
||||||
|
@ -3,10 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<script>
|
<script>
|
||||||
var coverSupport =
|
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'));
|
||||||
'CSS' in window &&
|
|
||||||
typeof CSS.supports === 'function' &&
|
|
||||||
(CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'));
|
|
||||||
document.write(
|
document.write(
|
||||||
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
'<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' : '') +
|
(coverSupport ? ', viewport-fit=cover' : '') +
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
"build:quickapp-webview-huawei": "uni build -p quickapp-webview-huawei",
|
"build:quickapp-webview-huawei": "uni build -p quickapp-webview-huawei",
|
||||||
"build:quickapp-webview-union": "uni build -p quickapp-webview-union",
|
"build:quickapp-webview-union": "uni build -p quickapp-webview-union",
|
||||||
"lint": "eslint --cache --max-warnings 0 \"src/**/*.{vue,ts}\" --fix",
|
"lint": "eslint --cache --max-warnings 0 \"src/**/*.{vue,ts}\" --fix",
|
||||||
"prettier": "prettier --write \"src/**/*.{js,ts,json,css,scss,vue}\"",
|
"format": "prettier --write \"src/**/*.{js,ts,json,css,scss,vue}\"",
|
||||||
"prepare": "husky install"
|
"prepare": "husky install"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"path": "pages/index/index",
|
"path": "pages/index/index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "首页",
|
"navigationBarTitleText": "首页",
|
||||||
"navigationStyle":"custom"
|
"navigationStyle": "custom"
|
||||||
},
|
},
|
||||||
"meta": {
|
"meta": {
|
||||||
"ignoreAuth": true
|
"ignoreAuth": true
|
||||||
@ -53,9 +53,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"subPackages": [{
|
"subPackages": [
|
||||||
|
{
|
||||||
"root": "pagesA",
|
"root": "pagesA",
|
||||||
"pages": [{
|
"pages": [
|
||||||
|
{
|
||||||
"path": "list/test1/index",
|
"path": "list/test1/index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "test1"
|
"navigationBarTitleText": "test1"
|
||||||
@ -63,19 +65,23 @@
|
|||||||
"meta": {
|
"meta": {
|
||||||
"ignoreAuth": true
|
"ignoreAuth": true
|
||||||
}
|
}
|
||||||
},{
|
},
|
||||||
|
{
|
||||||
"path": "list/test2/index",
|
"path": "list/test2/index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "test2",
|
"navigationBarTitleText": "test2",
|
||||||
"navigationStyle":"custom"
|
"navigationStyle": "custom"
|
||||||
},
|
},
|
||||||
"meta": {
|
"meta": {
|
||||||
"ignoreAuth": true
|
"ignoreAuth": true
|
||||||
}
|
}
|
||||||
}]
|
}
|
||||||
}, {
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
"root": "pagesB",
|
"root": "pagesB",
|
||||||
"pages": [{
|
"pages": [
|
||||||
|
{
|
||||||
"path": "detail/index",
|
"path": "detail/index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "Detail"
|
"navigationBarTitleText": "Detail"
|
||||||
@ -83,8 +89,10 @@
|
|||||||
"meta": {
|
"meta": {
|
||||||
"ignoreAuth": true
|
"ignoreAuth": true
|
||||||
}
|
}
|
||||||
}]
|
}
|
||||||
}],
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
"globalStyle": {
|
"globalStyle": {
|
||||||
"navigationBarTextStyle": "black",
|
"navigationBarTextStyle": "black",
|
||||||
"navigationBarTitleText": "uni-app",
|
"navigationBarTitleText": "uni-app",
|
||||||
@ -98,21 +106,25 @@
|
|||||||
"color": "#474747",
|
"color": "#474747",
|
||||||
"selectedColor": "#9BC6FC",
|
"selectedColor": "#9BC6FC",
|
||||||
"backgroundColor": "#FFFFFF",
|
"backgroundColor": "#FFFFFF",
|
||||||
"list": [{
|
"list": [
|
||||||
|
{
|
||||||
"pagePath": "pages/index/index",
|
"pagePath": "pages/index/index",
|
||||||
"text": "首页",
|
"text": "首页",
|
||||||
"iconPath": "static/images/tabBar/home.png",
|
"iconPath": "static/images/tabBar/home.png",
|
||||||
"selectedIconPath": "static/images/tabBar/selectedHome.png"
|
"selectedIconPath": "static/images/tabBar/selectedHome.png"
|
||||||
},{
|
},
|
||||||
|
{
|
||||||
"pagePath": "pages/demo/index",
|
"pagePath": "pages/demo/index",
|
||||||
"text": "Demo",
|
"text": "Demo",
|
||||||
"iconPath": "static/images/tabBar/demo.png",
|
"iconPath": "static/images/tabBar/demo.png",
|
||||||
"selectedIconPath": "static/images/tabBar/selectedDemo.png"
|
"selectedIconPath": "static/images/tabBar/selectedDemo.png"
|
||||||
},{
|
},
|
||||||
|
{
|
||||||
"pagePath": "pages/about/index",
|
"pagePath": "pages/about/index",
|
||||||
"text": "关于",
|
"text": "关于",
|
||||||
"iconPath": "static/images/tabBar/about.png",
|
"iconPath": "static/images/tabBar/about.png",
|
||||||
"selectedIconPath": "static/images/tabBar/selectedAbout.png"
|
"selectedIconPath": "static/images/tabBar/selectedAbout.png"
|
||||||
}]
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,7 @@ request.interceptors.request.use(
|
|||||||
}
|
}
|
||||||
return options;
|
return options;
|
||||||
},
|
},
|
||||||
(options) => Promise.reject(options)
|
(options) => Promise.reject(options),
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -59,7 +59,7 @@ request.interceptors.response.use(
|
|||||||
(response) =>
|
(response) =>
|
||||||
// 请求错误做点什么。可以使用async await 做异步操作
|
// 请求错误做点什么。可以使用async await 做异步操作
|
||||||
// error('Request Error!');
|
// error('Request Error!');
|
||||||
Promise.reject(response)
|
Promise.reject(response),
|
||||||
);
|
);
|
||||||
|
|
||||||
export { request };
|
export { request };
|
||||||
|
@ -6,10 +6,7 @@
|
|||||||
|
|
||||||
import { defineConfig, presetIcons } from 'unocss';
|
import { defineConfig, presetIcons } from 'unocss';
|
||||||
import presetWeapp from 'unocss-preset-weapp';
|
import presetWeapp from 'unocss-preset-weapp';
|
||||||
import {
|
import { transformerAttributify, transformerClass } from 'unocss-preset-weapp/transformer';
|
||||||
transformerAttributify,
|
|
||||||
transformerClass,
|
|
||||||
} from 'unocss-preset-weapp/transformer';
|
|
||||||
|
|
||||||
const transformRules = {
|
const transformRules = {
|
||||||
'.': '-d111-',
|
'.': '-d111-',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user