mirror of
https://github.com/robonen/lorem-blog.git
synced 2026-03-20 10:54:38 +00:00
18 lines
324 B
JavaScript
18 lines
324 B
JavaScript
import antfu from '@antfu/eslint-config';
|
|
|
|
export default antfu({
|
|
stylistic: {
|
|
indent: 2,
|
|
semi: true,
|
|
quotes: 'single',
|
|
overrides: {
|
|
'style/comma-dangle': ['error', 'always-multiline'],
|
|
},
|
|
},
|
|
rules: {
|
|
'unused-imports/no-unused-imports': 'error',
|
|
},
|
|
vue: true,
|
|
typescript: true,
|
|
});
|