18 lines
613 B
JavaScript
18 lines
613 B
JavaScript
// For more info, see https://github.com/storybookjs/eslint-plugin-storybook#configuration-flat-config-format
|
|
import antfu from '@antfu/eslint-config';
|
|
import pluginQuery from '@tanstack/eslint-plugin-query';
|
|
|
|
export default antfu({
|
|
gitignore: true,
|
|
ignores: ['**/node_modules/**', '**/dist/**', 'bun.lock', '**/routeTree.gen.ts', '**/ui/**', 'src/components/editor/**/*', 'src/client/**/*', 'openapi-ts.config.ts'],
|
|
react: true,
|
|
stylistic: {
|
|
semi: true,
|
|
quotes: 'single',
|
|
indent: 2,
|
|
},
|
|
typescript: {
|
|
tsconfigPath: 'tsconfig.json',
|
|
},
|
|
}, ...pluginQuery.configs['flat/recommended']);
|