mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
fix: 修复没有正确配置 eslint 扁平化配置的问题
This commit is contained in:
parent
1a9d4b9181
commit
81d1b6c707
@ -7,39 +7,43 @@ import antfu from '@antfu/eslint-config';
|
|||||||
* @see https://github.com/antfu/eslint-config
|
* @see https://github.com/antfu/eslint-config
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export default antfu({
|
export default antfu(
|
||||||
formatters: true,
|
{
|
||||||
vue: true,
|
formatters: true,
|
||||||
jsx: true,
|
vue: true,
|
||||||
unocss: true,
|
jsx: true,
|
||||||
rules: {
|
unocss: true,
|
||||||
'style/indent': ['error', 2, { SwitchCase: 2 }],
|
env: {
|
||||||
'style/quotes': ['error', 'single'],
|
node: true,
|
||||||
'style/semi': ['error', 'always'],
|
},
|
||||||
'style/semi-style': ['error', 'last'],
|
ignores: [
|
||||||
'style/max-len': ['error', {
|
'./dist/*',
|
||||||
code: 160,
|
'./.vscode/*',
|
||||||
tabWidth: 2,
|
'./.idea/*',
|
||||||
ignoreUrls: true,
|
'**/androidPrivacy.json',
|
||||||
ignoreComments: true,
|
'README.md',
|
||||||
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',
|
|
||||||
},
|
},
|
||||||
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',
|
|
||||||
],
|
|
||||||
});
|
|
||||||
|
@ -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 --ignore-pattern '*/androidPrivacy.json' --ignore-pattern 'README.md'",
|
"lint:fix": "eslint . --fix",
|
||||||
"git:hooks": "npx simple-git-hooks"
|
"git:hooks": "npx simple-git-hooks"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user