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:
@@ -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,
|
||||
});
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user