-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevbox.json
More file actions
37 lines (37 loc) · 771 Bytes
/
Copy pathdevbox.json
File metadata and controls
37 lines (37 loc) · 771 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
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.17.2/.schema/devbox.schema.json",
"packages": [
"shellcheck@0.11.0",
"shfmt@3.13.1",
"editorconfig-checker@3.7.0",
"pre-commit@4.5.1",
"taplo@0.10.0",
"yamllint@1.37.1",
"stylua@2.5.2",
"stow@2.4.1",
"jq@1.8.1",
"prettier@3.8.3",
"bats@1.12.0",
"zsh@5.9.1",
"go@1.26.3"
],
"shell": {
"scripts": {
"lint": [
"pre-commit run --all-files --color never"
],
"fmt": [
"bash scripts/fmt.sh"
],
"test": [
"bats tests/unit"
],
"palette-assets": [
"bash scripts/render-palette-assets.sh"
],
"doctor": [
"(cd tools/doctor && go run .)"
]
}
}
}