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

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