diff --git a/eslint.config.js b/eslint.config.js index fdafa88..2fe17c7 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -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', ], }); diff --git a/package.json b/package.json index 11128ae..b174697 100644 --- a/package.json +++ b/package.json @@ -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'" } } diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue index 3580eba..01d1c22 100644 --- a/src/pages/index/index.vue +++ b/src/pages/index/index.vue @@ -11,7 +11,7 @@ function onClick() {