blob: c115b74854510cb04227a70d08e3d599d2298cc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Dispatch (arch-rewrite) project config.
#
# LSP servers (typescript-language-server, biome) are inherited from the global
# ~/.config/dispatch/dispatch.toml — no per-repo LSP block needed. Agents can use
# the `lsp` tool (diagnostics / references / definition) on .ts files directly.
#
# Credentials for the rewrite live in .env (gitignored), read by auth-apikey.
# SSH computer discovery — hosts to exclude from the computer catalog.
# Computers are auto-discovered from ~/.ssh/known_hosts (hosts you've connected
# to) plus ~/.ssh/config (named Host aliases). These glob patterns filter out
# non-computer noise (code-hosting services, localhost, etc.) so only real
# remote machines appear in the selector.
[ssh]
reject = ["github.com", "localhost", "[localhost]"]
|