Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fission/biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -179,5 +179,5 @@
{ "includes": ["src/proto/**/*"], "linter": { "enabled": false } }
],

"assist": { "enabled": true, "actions": { "source": { "organizeImports": "on" } } }
"assist": { "enabled": true, "actions": { "source": { "organizeImports": "off" } } }
}
12 changes: 6 additions & 6 deletions fission/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
"build:prod": "tsc && vite build --base=/fission/ --outDir dist/prod",
"build:dev": "tsc && vite build --base=/fission-closed/ --outDir dist/dev",
"preview": "vite preview --base=/fission/",
"lint": "bunx --bun biome lint",
"lint:fix": "bunx --bun biome lint --fix",
"fmt": "bunx --bun biome format src",
"fmt:fix": "bunx --bun biome format src --write",
"style": "bun run fmt && bun run lint",
"style:fix": "bun run fmt:fix && bun run lint:fix",
"lint": "bunx biome lint",
"lint:fix": "bunx biome lint --write",
"fmt": "bunx biome format src",
"fmt:fix": "bunx biome format src --write",
"style": "bunx biome check src",
"style:fix": "bunx biome check src --write",
"assetpack": "git lfs pull && tar -xf public/assetpack.zip -C public/",
"assetpack:update": "cd public && zip -FS -r assetpack.zip Downloadables",
"playwright:install": "bun x playwright install",
Expand Down
Loading