generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.mise.toml
More file actions
42 lines (35 loc) · 775 Bytes
/
.mise.toml
File metadata and controls
42 lines (35 loc) · 775 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
[tools]
hk = "1.38.0"
pkl = "0.31.0"
actionlint = "1.7.11"
yamllint = "1.38.0"
markdownlint-cli2 = "0.21.0"
gitleaks = "8.30.0"
editorconfig-checker = "3.6.1"
"npm:prettier" = "3.8.1"
"npm:eslint" = "10.0.3"
"pipx:codespell" = "2.4.2"
[tasks.install]
alias = "i"
description = "Install dependencies"
run = "yarn install"
[tasks.build]
alias = "b"
description = "Build the project"
run = "yarn run build"
[tasks.lint]
alias = "l"
description = "Lint the codebase"
run = "hk check --all"
[tasks.format]
alias = "fmt"
description = "Format the codebase"
run = "hk fix --all"
[tasks.postlint]
description = "Run post-lint checks"
run = "git diff --exit-code"
[settings]
idiomatic_version_file_enable_tools = ["node", "yarn"]
experimental = true
[prepare.yarn]
auto = true