1
0
mirror of https://github.com/robonen/lorem-blog.git synced 2026-03-20 02:44:39 +00:00

chore(lint): disable import/first rule for vue sfc

This commit is contained in:
2025-07-14 02:48:20 +07:00
parent 0d88601a15
commit 42b6c90c1a

View File

@@ -1,20 +1,28 @@
import antfu from '@antfu/eslint-config'; import antfu from '@antfu/eslint-config';
export default antfu({ export default antfu(
stylistic: { {
indent: 2, stylistic: {
semi: true, indent: 2,
quotes: 'single', semi: true,
overrides: { quotes: 'single',
'style/comma-dangle': ['error', 'always-multiline'], overrides: {
'style/comma-dangle': ['error', 'always-multiline'],
},
},
vue: true,
typescript: true,
rules: {
'unused-imports/no-unused-imports': 'error',
'regexp/no-obscure-range': ['error', {
allowed: 'all',
}],
}, },
}, },
rules: { {
'unused-imports/no-unused-imports': 'error', files: ['**/*.vue'],
'regexp/no-obscure-range': ['error', { rules: {
allowed: 'all', 'import/first': 'off',
}], },
}, },
vue: true, );
typescript: true,
});