-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
50 lines (43 loc) · 789 Bytes
/
Copy pathmise.toml
File metadata and controls
50 lines (43 loc) · 789 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
42
43
44
45
46
47
48
49
50
#:schema https://mise.en.dev/schema/mise.json
[settings]
color = true
pipx.uvx = true
experimental = true
color_theme = "charm"
minimum_release_age_excludes = [
"hk",
"uv",
"pkl",
"bun",
"node",
"npm:oxfmt",
"npm:oxlint"
]
[env]
HK_MISE = 1
UV_PREVIEW = 1
[tools]
hk = "latest"
uv = "latest"
bun = "latest"
pkl = "latest"
node = "latest"
shfmt = "latest"
tombi = "latest"
usage = "latest"
ghalint = "latest"
gitleaks = "latest"
shellcheck = "latest"
actionlint = "latest"
betterleaks = "latest"
[hooks]
postinstall = "hk install --mise"
[tasks]
description = "run tests"
run = "bun test"
[tasks.check]
description = "format & lint files"
run = "hk fix --all && hk check --all"
[tasks.ci]
description = "run CI tasks"
run = "hk fix --all && hk check --all && bun test"