mirror of
https://github.com/robonen/lorem-blog.git
synced 2026-03-20 02:44:39 +00:00
feat: init project scaffold
This commit is contained in:
17
eslint.config.mjs
Normal file
17
eslint.config.mjs
Normal file
@@ -0,0 +1,17 @@
|
||||
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,
|
||||
});
|
||||
Reference in New Issue
Block a user