mirror of
https://github.com/coder/coder.git
synced 2026-06-03 21:18:24 +00:00
76076de1ca
Polishes the right panel UI introduced in #22633: <img width="3138" height="1596" alt="image" src="https://github.com/user-attachments/assets/d3947db0-6600-4469-b7e2-6eb80aadb7bc" /> Over 2k lines of this is just the Seti font definition. The file tree view isn't actually adjusting much, it's just a scroll helper. Soon I'll add a comment system so users can leave agents feedback directly from the code.
58 lines
1.2 KiB
TOML
58 lines
1.2 KiB
TOML
[default]
|
|
extend-ignore-identifiers-re = ["gho_.*"]
|
|
extend-ignore-re = ["(#|//)\\s*spellchecker:ignore-next-line\\n.*"]
|
|
|
|
[default.extend-identifiers]
|
|
alog = "alog"
|
|
Jetbrains = "JetBrains"
|
|
IST = "IST"
|
|
MacOS = "macOS"
|
|
AKS = "AKS"
|
|
O_WRONLY = "O_WRONLY"
|
|
AIBridge = "AI Bridge"
|
|
|
|
[default.extend-words]
|
|
AKS = "AKS"
|
|
# do as sudo replacement
|
|
doas = "doas"
|
|
darcula = "darcula"
|
|
Hashi = "Hashi"
|
|
trialer = "trialer"
|
|
encrypter = "encrypter"
|
|
# as in helsinki
|
|
hel = "hel"
|
|
# this is used as proto node
|
|
pn = "pn"
|
|
# typos doesn't like the EDE in TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
|
|
EDE = "EDE"
|
|
# HELO is an SMTP command
|
|
HELO = "HELO"
|
|
LKE = "LKE"
|
|
byt = "byt"
|
|
typ = "typ"
|
|
# file extensions used in seti icon theme
|
|
styl = "styl"
|
|
edn = "edn"
|
|
Inferrable = "Inferrable"
|
|
|
|
[files]
|
|
extend-exclude = [
|
|
"**.svg",
|
|
"**.png",
|
|
"**.lock",
|
|
"go.sum",
|
|
"go.mod",
|
|
# These files contain base64 strings that confuse the detector
|
|
"**XService**.ts",
|
|
"**identity.go",
|
|
"**/*_test.go",
|
|
"**/*.test.tsx",
|
|
"**/pnpm-lock.yaml",
|
|
"tailnet/testdata/**",
|
|
"site/src/pages/SetupPage/countries.tsx",
|
|
"provisioner/terraform/testdata/**",
|
|
# notifications' golden files confuse the detector because of quoted-printable encoding
|
|
"coderd/notifications/testdata/**",
|
|
"agent/agentcontainers/testdata/devcontainercli/**",
|
|
]
|