fix: 修复没有正确配置 eslint 扁平化配置的问题

This commit is contained in:
tnt group 2024-06-26 15:39:00 +08:00
parent 1a9d4b9181
commit 81d1b6c707
2 changed files with 39 additions and 35 deletions

View File

@ -7,11 +7,24 @@ import antfu from '@antfu/eslint-config';
* @see https://github.com/antfu/eslint-config
*/
export default antfu({
export default antfu(
{
formatters: true,
vue: true,
jsx: true,
unocss: true,
env: {
node: true,
},
ignores: [
'./dist/*',
'./.vscode/*',
'./.idea/*',
'**/androidPrivacy.json',
'README.md',
],
},
{
rules: {
'style/indent': ['error', 2, { SwitchCase: 2 }],
'style/quotes': ['error', 'single'],
@ -32,14 +45,5 @@ export default antfu({
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-useless-catch': 'off',
},
env: {
node: true,
},
ignores: [
'./dist/*',
'./.vscode/*',
'./.idea/*',
'**/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 --ignore-pattern '*/androidPrivacy.json' --ignore-pattern 'README.md'",
"lint:fix": "eslint . --fix",
"git:hooks": "npx simple-git-hooks"
},
"dependencies": {