-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mise.toml
More file actions
70 lines (58 loc) · 1.96 KB
/
Copy path.mise.toml
File metadata and controls
70 lines (58 loc) · 1.96 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[settings]
lockfile = true
http_retries = 3
pin = true
fetch_remote_versions_cache = "4h"
[settings.status]
missing_tools = "always"
[tools]
node = "25.8.2"
rg = "15.1.0"
fd = "10.4.2"
jq = "1.8.1"
yq = "4.52.5"
shellcheck = "0.11.0"
shfmt = "3.13.0"
rtk = { version = "0.34.2", postinstall = "rtk init -g --claude && rtk init -g --codex" }
"npm:context-mode" = "1.0.89"
rust = { version = "1.85.0", components = "rust-analyzer,rust-src" }
cargo-binstall = "1.18.1"
"cargo:cargo-deb" = "3.6.3"
"cargo:cargo-generate-rpm" = "0.20.0"
[tools."github:dmtrKovalenko/fff.nvim"]
version = "0.6.1"
exe = "fff-mcp"
postinstall = """
command -v claude >/dev/null && claude mcp remove fff -s user 2>/dev/null; \
command -v claude >/dev/null && claude mcp add -s user fff -- $MISE_TOOL_INSTALL_PATH/fff-mcp --log-level warn || true; \
command -v codex >/dev/null && codex mcp add fff -- $MISE_TOOL_INSTALL_PATH/fff-mcp --log-level warn || true
"""
[tools."github:dmtrKovalenko/fff.nvim".platforms]
linux-x64 = { asset_pattern = "fff-mcp-x86_64-unknown-linux-musl" }
linux-arm64 = { asset_pattern = "fff-mcp-aarch64-unknown-linux-musl" }
macos-x64 = { asset_pattern = "fff-mcp-x86_64-apple-darwin" }
macos-arm64 = { asset_pattern = "fff-mcp-aarch64-apple-darwin" }
[tasks.build]
description = "Build the Rust project"
run = "cargo build"
[tasks.fmt]
description = "Format Rust sources"
run = "cargo fmt --all"
[tasks.fmt-check]
description = "Check Rust formatting"
run = "cargo fmt --all -- --check"
[tasks.lint]
description = "Run Clippy with warnings denied"
run = "cargo clippy --all-targets --all-features -- -D warnings"
[tasks.clippy]
description = "Alias for lint"
depends = ["lint"]
[tasks.test]
description = "Run the test suite"
run = "cargo test"
[tasks.doc]
description = "Build crate docs with warnings denied"
run = 'RUSTDOCFLAGS="-D warnings" cargo doc --no-deps --document-private-items'
[tasks.check]
description = "Run the full quality suite"
depends = ["fmt-check", "lint", "test", "doc"]