deps: vidstack, framer-motion, zustand, radix, tauri

This commit is contained in:
2026-03-23 08:16:27 +02:00
parent 4e2e3626cc
commit d65da148d4
5 changed files with 2225 additions and 67 deletions
+7 -1
View File
@@ -6,7 +6,7 @@ import tseslint from 'typescript-eslint'
import { defineConfig, globalIgnores } from 'eslint/config'
export default defineConfig([
globalIgnores(['dist']),
globalIgnores(['dist', 'src-tauri/target', 'src-tauri/gen/schemas']),
{
files: ['**/*.{ts,tsx}'],
extends: [
@@ -18,5 +18,11 @@ export default defineConfig([
languageOptions: {
globals: globals.browser,
},
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'react-hooks/set-state-in-effect': 'off',
'react-hooks/refs': 'off',
'react-refresh/only-export-components': 'off',
},
},
])