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": {