mise.toml

 1# SPDX-FileCopyrightText: Amolith <amolith@secluded.site>
 2#
 3# SPDX-License-Identifier: CC0-1.0
 4
 5[tools]
 6bun = "1.3"
 7
 8[tasks.fmt]
 9description = "Format all files with Biome"
10run = "bun run fmt"
11
12[tasks.lint]
13description = "Lint all files with Biome"
14run = "bun run lint"
15
16[tasks.typecheck]
17description = "Type-check all packages with TypeScript"
18run = "bun run typecheck"
19
20[tasks.check]
21description = "Format, lint, and type-check"
22depends = ["fmt", "lint", "typecheck"]