aboutsummaryrefslogtreecommitdiff
path: root/eslint.config.js
blob: 04d31469697b02cd09bd5ec370c8058421ede939 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import petal from '@flowr/eslint-config';

export default petal({
	// broken for some reason
	astro: false,
	// broken for some reason
	react: false,
	typescript: true,
	gitignore: true,
	ignores: [
		'**/target',
		'**/dist',
		'**/types',
		'**/cache',
		'**/dist',
		'**/.temp',
		'**/*.svg',
		'*.rs',
		'pnpm-lock.yaml',
		'packages/client/src/core.ts',
		'apps/desktop/src/commands.ts',
		'**/.next/**',
		'**/*.astro',
	],
});