Pre Merge pull request !3 from 佚名程序员/master

This commit is contained in:
佚名程序员 2023-02-17 03:40:06 +00:00 committed by Gitee
commit b6b3b9f658
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
7 changed files with 150 additions and 77 deletions

4
.gitignore vendored
View File

@ -5,7 +5,7 @@ dist
*.local
# Editor directories and files
# 编辑器目录和文件
.idea
.vscode
.hbuilderx
pnpm-lock.yaml

6
.npmrc
View File

@ -1 +1,5 @@
strict-peer-dependencies=false
# 提示:如果你想自动安装对等依赖,在项目根目录下的.npmrc文件中添加"auto-install-peers=true"。
# 提示:如果你不希望pnpm在对等依赖问题上失败在项目根目录下的.npmrc文件中添加"strict-peer-dependencies=false"。
# auto-install-peers=true
strict-peer-dependencies=false
registry=https://registry.npmmirror.com

View File

@ -1,11 +1,40 @@
module.exports = {
printWidth: 80,
semi: true,
vueIndentScriptAndStyle: true,
singleQuote: true,
trailingComma: 'all',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
arrowParens: 'avoid',
// 一行最多 160 字符
printWidth: 160,
// 不使用缩进符,而使用空格
useTabs: true,
// 使用 2 个空格缩进
tabWidth: 4,
tabSize: 4,
// 行尾需要有分号
semi: true,
// 使用单引号
singleQuote: true,
// 对象的 key 仅在必要时用引号 (可选值as-needed|consistent|preserve)
quoteProps: 'as-needed',
// jsx 不使用单引号,而使用双引号
jsxSingleQuote: false,
// 末尾不需要逗号 'es5' (可选值none|es5|all默认none)
trailingComma: 'es5',
// 大括号内的首尾需要空格
bracketSpacing: true,
// jsx 标签的反尖括号需要换行
jsxBracketSameLine: false,
// 箭头函数,只有一个参数的时候,也需要括号
arrowParens: 'always',
// 每个文件格式化的范围是文件的全部内容
rangeStart: 0,
rangeEnd: Infinity,
// 不需要写文件开头的 @prettier
requirePragma: false,
// 不需要自动在文件开头插入 @prettier
insertPragma: false,
// 使用默认的折行标准 (可选值always|never|preserve)
proseWrap: 'preserve',
// 根据显示样式决定 html 要不要折行 (可选值css|strict|ignore)
htmlWhitespaceSensitivity: 'css',
// vue脚本文件和样式的缩进
vueIndentScriptAndStyle: false,
// 换行符使用 lf 结尾是 (可选值auto|lf|crlf|cr)
endOfLine: 'lf',
};

5
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"editor.formatOnSave": true, //
"editor.detectIndentation": false,
"editor.tabSize": 4
}

View File

@ -64,7 +64,7 @@
"@dcloudio/uni-automator": "3.0.0-alpha-3070120230210001",
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3070120230210001",
"@dcloudio/vite-plugin-uni": "3.0.0-alpha-3070120230210001",
"@iconify/json": "^2.2.21",
"@iconify/json": "^2.2.22",
"@types/crypto-js": "^4.1.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.45",
@ -82,7 +82,7 @@
"mrm": "^4.1.13",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"sass": "^1.58.1",
"sass": "^1.58.2",
"typescript": "^4.9.5",
"unocss": "^0.46.5",
"unocss-preset-weapp": "^0.2.5",

View File

@ -1,19 +1,54 @@
{
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"types": ["@dcloudio/types"],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
/* */
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], //
"exclude": [], //
//使 ** *
/* */
"compilerOptions": {
"target": "esnext", //
"useDefineForClassFields": true, //ecmascript
"module": "esnext", //
"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, //
"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, //
/* */
"forceConsistentCasingInFileNames": true, //
"extendedDiagnostics": false, // TS
"noEmitOnError": true, //
"resolveJsonModule": true // JSON
}
}

View File

@ -7,50 +7,50 @@ import Unocss from 'unocss/vite';
// https://vitejs.cn/config/
export default ({ mode }: ConfigEnv): UserConfig => {
const root = process.cwd();
const env = loadEnv(mode, root);
return {
base: './',
resolve: {
alias: {
'@': resolve('./src'),
},
},
define: {
'process.env': {},
},
server: {
host: true,
// open: true,
port: env.VITE_PORT as any,
proxy: {
'/api': {
target: env.VITE_BASE_URL,
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, ''),
},
'/upload': {
target: env.VITE_BASE_URL,
changeOrigin: true,
rewrite: path => path.replace(/^\/upload/, ''),
},
},
},
plugins: [
uni(),
Unocss(),
// eslintPlugin({
// include: ['src/**/*.js', 'src/**/*.vue', 'src/**/*.ts'],
// exclude: ['./node_modules/**'],
// cache: false,
// }),
],
css: {
preprocessorOptions: {
scss: {
// additionalData: '@import "@/assets/style/main.scss";',
},
},
},
};
const root = process.cwd();
const env = loadEnv(mode, root);
return {
base: './',
resolve: {
alias: {
'@': resolve('./src'),
},
},
define: {
'process.env': {},
},
server: {
host: true,
// open: true,
port: env.VITE_PORT as any,
proxy: {
'/api': {
target: env.VITE_BASE_URL,
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ''),
},
'/upload': {
target: env.VITE_BASE_URL,
changeOrigin: true,
rewrite: (path) => path.replace(/^\/upload/, ''),
},
},
},
plugins: [
uni(),
Unocss(),
// eslintPlugin({
// include: ['src/**/*.js', 'src/**/*.vue', 'src/**/*.ts'],
// exclude: ['./node_modules/**'],
// cache: false,
// }),
],
css: {
preprocessorOptions: {
scss: {
// additionalData: '@import "@/assets/style/main.scss";',
},
},
},
};
};