forked from nixcn/nixcn-cms
16 lines
317 B
JavaScript
16 lines
317 B
JavaScript
import antfu from '@antfu/eslint-config';
|
|
|
|
export default antfu({
|
|
gitignore: true,
|
|
ignores: ['**/node_modules/**', '**/dist/**', 'bun.lock', '**/routeTree.gen.ts'],
|
|
react: true,
|
|
stylistic: {
|
|
semi: true,
|
|
quotes: 'single',
|
|
indent: 2,
|
|
},
|
|
typescript: {
|
|
tsconfigPath: 'tsconfig.json',
|
|
},
|
|
});
|