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';
export default antfu({
stylistic: {
indent: 2,
semi: true,
quotes: 'single',
overrides: {
'style/comma-dangle': ['error', 'always-multiline'],
export default antfu(
{
stylistic: {
indent: 2,
semi: true,
quotes: 'single',
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',
'regexp/no-obscure-range': ['error', {
allowed: 'all',
}],
{
files: ['**/*.vue'],
rules: {
'import/first': 'off',
},
},
vue: true,
typescript: true,
});
);