-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.mise.toml
More file actions
41 lines (34 loc) · 785 Bytes
/
Copy path.mise.toml
File metadata and controls
41 lines (34 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Mise configuration for Better Email MCP
# https://mise.jdx.dev/
#
# Setup: mise run setup
[tools]
node = "24"
bun = "latest"
uv = "latest"
python = "3.13"
[env]
UV_LINK_MODE = "copy"
[tasks.setup]
description = "Setup development environment"
run = [
"mise install",
"bun install",
"node scripts/clean-venv.mjs",
"uv pip install pre-commit",
"uv run pre-commit install",
"uv run pre-commit install --hook-type commit-msg",
"echo 'Setup complete!'"
]
[tasks.lint]
description = "Run all quality checks (biome + tsc)"
run = "bun run check"
[tasks.test]
description = "Run tests"
run = "bun run test"
[tasks.fix]
description = "Auto-fix formatting and linting issues"
run = "bun run check:fix"
[tasks.dev]
description = "Run MCP server locally"
run = "bun run dev"