From 81d1b6c707f498d5bb93f73b3d6a1484e54d2703 Mon Sep 17 00:00:00 2001 From: tnt group Date: Wed, 26 Jun 2024 15:39:00 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E6=AD=A3=E7=A1=AE=E9=85=8D=E7=BD=AE=20eslint=20=E6=89=81?= =?UTF-8?q?=E5=B9=B3=E5=8C=96=E9=85=8D=E7=BD=AE=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- eslint.config.js | 72 +++++++++++++++++++++++++----------------------- package.json | 2 +- 2 files changed, 39 insertions(+), 35 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index 530a235..98b72d7 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -7,39 +7,43 @@ import antfu from '@antfu/eslint-config'; * @see https://github.com/antfu/eslint-config */ -export default antfu({ - formatters: true, - vue: true, - jsx: true, - unocss: true, - rules: { - 'style/indent': ['error', 2, { SwitchCase: 2 }], - 'style/quotes': ['error', 'single'], - 'style/semi': ['error', 'always'], - 'style/semi-style': ['error', 'last'], - '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', - 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', - 'no-useless-catch': 'off', +export default antfu( + { + formatters: true, + vue: true, + jsx: true, + unocss: true, + env: { + node: true, + }, + ignores: [ + './dist/*', + './.vscode/*', + './.idea/*', + '**/androidPrivacy.json', + 'README.md', + ], }, - env: { - node: true, + { + rules: { + 'style/indent': ['error', 2, { SwitchCase: 2 }], + 'style/quotes': ['error', 'single'], + 'style/semi': ['error', 'always'], + 'style/semi-style': ['error', 'last'], + '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', + 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', + 'no-useless-catch': 'off', + }, }, - ignores: [ - './dist/*', - './.vscode/*', - './.idea/*', - '**/androidPrivacy.json', - 'README.md', - ], -}); +); diff --git a/package.json b/package.json index a5ad6fd..0c3bd7e 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 --ignore-pattern '*/androidPrivacy.json' --ignore-pattern 'README.md'", + "lint:fix": "eslint . --fix", "git:hooks": "npx simple-git-hooks" }, "dependencies": {