mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
* feat: add doas support Some people may have some reason to drop sudo and switch to doas * chore: doas at the end Just because it is relatively cold :-( Co-authored-by: Kyle Carberry <kyle@carberry.com> * chore(CI): add doas to pass CI * fix syntax error Co-authored-by: Kyle Carberry <kyle@carberry.com> Co-authored-by: Ben <me@bpmct.net>
22 lines
370 B
TOML
22 lines
370 B
TOML
[default.extend-identifiers]
|
|
alog = "alog"
|
|
Jetbrains = "JetBrains"
|
|
IST = "IST"
|
|
MacOS = "macOS"
|
|
|
|
[default.extend-words]
|
|
# do as sudo replacement
|
|
doas = "doas"
|
|
|
|
[files]
|
|
extend-exclude = [
|
|
"**.svg",
|
|
"**.png",
|
|
"**.lock",
|
|
"go.sum",
|
|
"go.mod",
|
|
# These files contain base64 strings that confuse the detector
|
|
"**XService**.ts",
|
|
"**identity.go",
|
|
]
|