mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
style: eslint 格式化代码
This commit is contained in:
parent
872babf2c2
commit
0fea321256
@ -1,7 +1,7 @@
|
||||
/** @type {import('eslint').Linter.Config} */
|
||||
|
||||
import antfu from '@antfu/eslint-config';
|
||||
import process from 'node:process';
|
||||
import antfu from '@antfu/eslint-config';
|
||||
|
||||
/**
|
||||
* @see https://github.com/antfu/eslint-config
|
||||
@ -17,7 +17,15 @@ export default antfu({
|
||||
'style/quotes': ['error', 'single'],
|
||||
'style/semi': ['error', 'always'],
|
||||
'style/semi-style': ['error', 'last'],
|
||||
'style/max-len': ['error', { code: 160, tabWidth: 2 }],
|
||||
'style/max-len': ['error', {
|
||||
code: 160,
|
||||
tabWidth: 2,
|
||||
ignoreUrls: true,
|
||||
ignoreComments: true,
|
||||
ignoreStrings: true,
|
||||
ignoreTemplateLiterals: true,
|
||||
ignoreRegExpLiterals: true,
|
||||
}],
|
||||
'style/brace-style': ['error', '1tbs', { allowSingleLine: true }],
|
||||
'vue/script-indent': ['error', 2, { baseIndent: 0 }],
|
||||
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||||
@ -29,6 +37,7 @@ export default antfu({
|
||||
'./dist/*',
|
||||
'./.vscode/*',
|
||||
'./.idea/*',
|
||||
'./README.md',
|
||||
'**/androidPrivacy.json',
|
||||
'README.md',
|
||||
],
|
||||
});
|
||||
|
@ -31,7 +31,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:fix": "eslint . --fix",
|
||||
"lint:fix": "eslint . --fix --ignore-pattern '*/androidPrivacy.json' --ignore-pattern 'README.md'",
|
||||
"git:hooks": "npx simple-git-hooks"
|
||||
},
|
||||
"dependencies": {
|
||||
@ -93,6 +93,6 @@
|
||||
"commit-msg": "npx tsx ./scripts/verify-commit.ts"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*": "eslint --fix"
|
||||
"*": "eslint --fix --ignore-pattern '*/androidPrivacy.json' --ignore-pattern 'README.md'"
|
||||
}
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ function onClick() {
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<view class="border border-solid border-blue text-primary h-44 center text-mini">
|
||||
<view class="border border-blue border-solid text-mini text-primary center h-44">
|
||||
home
|
||||
</view>
|
||||
<button @click="onClick">
|
||||
|
@ -19,7 +19,7 @@ function backHome() {
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<view class="w-screen flex flex-col items-center pt-320rpx">
|
||||
<view class="pt-320rpx flex flex-col w-screen items-center">
|
||||
<image class="w-360rpx" mode="widthFix" src="/static/svg/weep.svg" />
|
||||
<view class="mb-40rpx">
|
||||
<text>{{ go }} 页面找不到了~</text>
|
||||
|
@ -93,8 +93,8 @@ export const isServer = typeof window === 'undefined';
|
||||
export const isClient = !isServer;
|
||||
|
||||
export function isUrl(path: string): boolean {
|
||||
// @ts-expect-error
|
||||
const reg
|
||||
= /^((https|http|ftp|rtsp|mms):\/\/)(([\w!~*'().&=+$%-]+: )?[\w!~*'().&=+$%-]+@)?((\d{1,3}.){3}\d{1,3}|([\w!~*'()-]+.)*([0-9a-zA-Z][0-9a-zA-Z-]{0,61})?[0-9a-zA-Z].[a-zA-Z]{2,6})(:\d{1,4})?((\/?)|(\/[\w!~*'().;?:@&=+$,%#-]+)+\/?)$/;
|
||||
// eslint-disable-next-line regexp/no-super-linear-backtracking
|
||||
= /^(?:https|http|ftp|rtsp|mms):\/\/(?:(?:[\w!~*'().&=+$%-]+: )?[\w!~*'().&=+$%-]+@)?(?:(?:\d{1,3}.){3}\d{1,3}|(?:[\w!~*'()-]+.)*(?:[0-9a-zA-Z][0-9a-zA-Z-]{0,61})?[0-9a-zA-Z].[a-zA-Z]{2,6})(?::\d{1,4})?(?:\/?|(?:\/[\w!~*'().;?:@&=+$,%#-]+)+\/?)$/;
|
||||
return reg.test(path);
|
||||
}
|
||||
|
@ -1,25 +1,24 @@
|
||||
{ // 指定要从编译中排除的文件列表
|
||||
"compilerOptions": { // 指定基目录以解析非相对模块名
|
||||
"rootDir": "./src", // 在源文件中指定根文件夹
|
||||
"outDir": "./dist", // 为所有发出的文件指定一个输出文件夹
|
||||
"compilerOptions": { // 为所有发出的文件指定一个输出文件夹
|
||||
"target": "ESNext", // 允许export=导出,由import from 导入
|
||||
"lib": ["ESNext", "DOM", "ScriptHost"], // 是否启用对装饰器的实验性支持,装饰器是一种语言特性,还没有完全被 JavaScript 规范批准
|
||||
"emitDecoratorMetadata": true, // 是否通过" . “(obj.key) 语法访问字段和"索引”( obj[“key”]), 以及在类型中声明属性的方式之间的一致性
|
||||
|
||||
/* 实验选项 */
|
||||
"experimentalDecorators": true,
|
||||
"baseUrl": "./", // 编译出目标语言版本
|
||||
"baseUrl": "./", // 指定基目录以解析非相对模块名
|
||||
"rootDir": "./src", // 编译出目标语言版本
|
||||
"module": "ESNext", // 生成代码的模板标准
|
||||
"moduleResolution": "node", // 删除注释
|
||||
"paths": { "@/*": ["./src/*"] }, // 有错误时不进行编译
|
||||
"resolveJsonModule": true, // TS需要引用的库
|
||||
"types": ["@types/node"], // 设置发出文件的换行符
|
||||
"types": ["@types/node"], // 在源文件中指定根文件夹
|
||||
/* 严格检查选项 */
|
||||
"strict": true, // 设置发出文件的换行符
|
||||
// "sourceMap": true, //为发出的JavaScript文件创建源映射文件。
|
||||
// "declaration": true, // 从项目中的TypeScript和JavaScript文件生成.d.ts文件
|
||||
// "declarationMap": true, // 为d.ts文件创建源地图
|
||||
|
||||
/* 严格检查选项 */
|
||||
"strict": true, // 在进行类型检查时,请考虑null和undefined。
|
||||
"strictBindCallApply": true, // 检查bind、call和apply方法的参数是否与原始函数匹配。
|
||||
"strictFunctionTypes": true, // 不允许this有隐式的any类型
|
||||
"strictNullChecks": true, // 在给函数赋值时,要确保参数和返回值是子类型兼容的。
|
||||
@ -37,7 +36,8 @@
|
||||
"noUnusedLocals": true, // 是否检查未使用的局部变量
|
||||
"noUnusedParameters": true, // 在输出中启用颜色和格式,使编译器错误更容易阅读
|
||||
"newLine": "crlf", // 是否查看 TS 在编译时花费的时间
|
||||
"noEmitOnError": true, // 指定要包含的类型包名,而不需要在源文件中引用
|
||||
"noEmitOnError": true, // 在进行类型检查时,请考虑null和undefined。
|
||||
"outDir": "./dist", // 指定要包含的类型包名,而不需要在源文件中引用
|
||||
"removeComments": true, // 指定TypeScript如何从给定的模块说明符查找文件
|
||||
"esModuleInterop": true, // 指定一组条目,它们将导入重新映射到其他查找位置
|
||||
"pretty": true, // 为装饰器启用对发出类型元数据的实验性支持
|
||||
|
Loading…
x
Reference in New Issue
Block a user