-
Notifications
You must be signed in to change notification settings - Fork 480
Expand file tree
/
Copy path.mise.toml
More file actions
37 lines (30 loc) · 878 Bytes
/
.mise.toml
File metadata and controls
37 lines (30 loc) · 878 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
# Mise configuration for dotCMS development
# https://mise.jdx.dev/
#
# To activate mise in your shell, add to your ~/.zshrc or ~/.bashrc:
# eval "$(mise activate zsh)" # for zsh
# eval "$(mise activate bash)" # for bash
#
# Or run in current shell:
# eval "$(mise activate $(basename $SHELL))"
#
# Then reload: source ~/.zshrc (or restart terminal)
#
# Verify installation: mise doctor
[tools]
# GitHub CLI for issue/PR management
gh = "latest"
# Python for cicd-diagnostics skill and automation scripts
python = "3.11"
# GitHub Actions workflow linter
actionlint = "latest"
# Shell script linter (used by actionlint for run: blocks)
shellcheck = "latest"
[env]
# Python virtual environment location
_.python.venv = { path = ".venv", create = true }
[settings]
# Experimental features
experimental = true
# Automatically install missing tools
auto_install = true