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} */ /** @type {import('eslint').Linter.Config} */
import antfu from '@antfu/eslint-config';
import process from 'node:process'; import process from 'node:process';
import antfu from '@antfu/eslint-config';
/** /**
* @see https://github.com/antfu/eslint-config * @see https://github.com/antfu/eslint-config
@ -17,7 +17,15 @@ export default antfu({
'style/quotes': ['error', 'single'], 'style/quotes': ['error', 'single'],
'style/semi': ['error', 'always'], 'style/semi': ['error', 'always'],
'style/semi-style': ['error', 'last'], '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 }], 'style/brace-style': ['error', '1tbs', { allowSingleLine: true }],
'vue/script-indent': ['error', 2, { baseIndent: 0 }], 'vue/script-indent': ['error', 2, { baseIndent: 0 }],
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
@ -29,6 +37,7 @@ export default antfu({
'./dist/*', './dist/*',
'./.vscode/*', './.vscode/*',
'./.idea/*', './.idea/*',
'./README.md', '**/androidPrivacy.json',
'README.md',
], ],
}); });

View File

@ -31,7 +31,7 @@
"build:quickapp-webview": "uni build -p quickapp-webview", "build:quickapp-webview": "uni build -p quickapp-webview",
"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:fix": "eslint . --fix", "lint:fix": "eslint . --fix --ignore-pattern '*/androidPrivacy.json' --ignore-pattern 'README.md'",
"git:hooks": "npx simple-git-hooks" "git:hooks": "npx simple-git-hooks"
}, },
"dependencies": { "dependencies": {
@ -93,6 +93,6 @@
"commit-msg": "npx tsx ./scripts/verify-commit.ts" "commit-msg": "npx tsx ./scripts/verify-commit.ts"
}, },
"lint-staged": { "lint-staged": {
"*": "eslint --fix" "*": "eslint --fix --ignore-pattern '*/androidPrivacy.json' --ignore-pattern 'README.md'"
} }
} }

View File

@ -11,7 +11,7 @@ function onClick() {
</script> </script>
<template> <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 home
</view> </view>
<button @click="onClick"> <button @click="onClick">

View File

@ -19,7 +19,7 @@ function backHome() {
</script> </script>
<template> <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" /> <image class="w-360rpx" mode="widthFix" src="/static/svg/weep.svg" />
<view class="mb-40rpx"> <view class="mb-40rpx">
<text>{{ go }} 页面找不到了~</text> <text>{{ go }} 页面找不到了~</text>

View File

@ -93,8 +93,8 @@ export const isServer = typeof window === 'undefined';
export const isClient = !isServer; export const isClient = !isServer;
export function isUrl(path: string): boolean { export function isUrl(path: string): boolean {
// @ts-expect-error
const reg 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); return reg.test(path);
} }

View File

@ -1,25 +1,24 @@
{ // { //
"compilerOptions": { // "compilerOptions": { //
"rootDir": "./src", //
"outDir": "./dist", //
"target": "ESNext", // export=import from "target": "ESNext", // export=import from
"lib": ["ESNext", "DOM", "ScriptHost"], // JavaScript "lib": ["ESNext", "DOM", "ScriptHost"], // JavaScript
"emitDecoratorMetadata": true, // " . “(obj.key) 语法访问字段和"( obj[key]) "emitDecoratorMetadata": true, // " . “(obj.key) 语法访问字段和"( obj[key])
/* */ /* */
"experimentalDecorators": true, "experimentalDecorators": true,
"baseUrl": "./", // "baseUrl": "./", //
"rootDir": "./src", //
"module": "ESNext", // "module": "ESNext", //
"moduleResolution": "node", // "moduleResolution": "node", //
"paths": { "@/*": ["./src/*"] }, // "paths": { "@/*": ["./src/*"] }, //
"resolveJsonModule": true, // TS "resolveJsonModule": true, // TS
"types": ["@types/node"], // "types": ["@types/node"], //
/* */
"strict": true, //
// "sourceMap": true, //JavaScript // "sourceMap": true, //JavaScript
// "declaration": true, // TypeScriptJavaScript.d.ts // "declaration": true, // TypeScriptJavaScript.d.ts
// "declarationMap": true, // d.ts // "declarationMap": true, // d.ts
/* */
"strict": true, // nullundefined
"strictBindCallApply": true, // bindcallapply "strictBindCallApply": true, // bindcallapply
"strictFunctionTypes": true, // thisany "strictFunctionTypes": true, // thisany
"strictNullChecks": true, // "strictNullChecks": true, //
@ -37,7 +36,8 @@
"noUnusedLocals": true, // 使 "noUnusedLocals": true, // 使
"noUnusedParameters": true, // 使 "noUnusedParameters": true, // 使
"newLine": "crlf", // TS "newLine": "crlf", // TS
"noEmitOnError": true, // "noEmitOnError": true, // nullundefined
"outDir": "./dist", //
"removeComments": true, // TypeScript "removeComments": true, // TypeScript
"esModuleInterop": true, // "esModuleInterop": true, //
"pretty": true, // "pretty": true, //