style: eslint 格式化代码

This commit is contained in:
h_mo 2024-06-14 11:23:46 +08:00
parent 872babf2c2
commit 0fea321256
6 changed files with 26 additions and 17 deletions

View File

@ -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',
],
});

View File

@ -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'"
}
}

View File

@ -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">

View File

@ -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>

View File

@ -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);
}

View File

@ -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, // TypeScriptJavaScript.d.ts
// "declarationMap": true, // d.ts
/* */
"strict": true, // nullundefined
"strictBindCallApply": true, // bindcallapply
"strictFunctionTypes": true, // thisany
"strictNullChecks": true, //
@ -37,7 +36,8 @@
"noUnusedLocals": true, // 使
"noUnusedParameters": true, // 使
"newLine": "crlf", // TS
"noEmitOnError": true, //
"noEmitOnError": true, // nullundefined
"outDir": "./dist", //
"removeComments": true, // TypeScript
"esModuleInterop": true, //
"pretty": true, //