aboutsummaryrefslogtreecommitdiff
path: root/eslint.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'eslint.config.js')
-rw-r--r--eslint.config.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/eslint.config.js b/eslint.config.js
new file mode 100644
index 0000000..04d3146
--- /dev/null
+++ b/eslint.config.js
@@ -0,0 +1,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',
+ ],
+});