chore: switch from biome to eslint + prettier; fix ton of lint issues

This commit is contained in:
Maze Winther
2026-05-02 03:27:23 +02:00
parent d6622dc6b3
commit a9b9cf6bf5
159 changed files with 5630 additions and 5255 deletions
+15 -5
View File
@@ -13,26 +13,36 @@
"dev:tools": "turbo run dev --filter=@opencut/tools",
"dev:wasm": "cargo watch -w rust/crates -w rust/wasm/src -s 'wasm-pack build rust/wasm --target bundler --out-dir pkg'",
"dev:web": "turbo run dev --filter=@opencut/web",
"format:web": "biome format apps/web/src/services/renderer --write --max-diagnostics=1000",
"format:web": "prettier apps/web/src/services/renderer --write",
"generate:fonts": "npx tsx apps/web/scripts/generate-font-sprites.ts",
"lint:web": "biome lint apps/web/src --max-diagnostics=1000",
"lint:web:fix": "biome lint apps/web/src --write --unsafe --max-diagnostics=1000",
"lint:web": "eslint apps/web/src --ext .ts,.tsx",
"lint:web:fix": "eslint apps/web/src --ext .ts,.tsx --fix",
"preview:web": "turbo run preview --filter=@opencut/web",
"publish:wasm": "bun run build:wasm && npm publish rust/wasm/pkg --access public",
"start:tools": "turbo run start --filter=@opencut/tools",
"test": "bun test"
},
"dependencies": {
"@biomejs/biome": "^2.4.8",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"better-auth": "^1.4.15",
"next": "^16.1.3",
"opencut": ".",
"opencut-wasm": "^0.2.10"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@next/eslint-plugin-next": "^16.2.4",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"turbo": "^2.8.20",
"typescript": "^6.0.2"
"typescript": "^6.0.2",
"typescript-eslint": "^8.59.0"
},
"trustedDependencies": [
"@tailwindcss/oxide"