Skip to content

Commit 7e697d6

Browse files
authored
Strip trailing whitespace in santaconfig.ts (#943)
The \`markdown-check\` job runs \`git grep -EIn $'[ \t]+$' -- ':(exclude)*.patch'\` across the working tree and fails on any trailing whitespace. A single line in \`docs/src/lib/santaconfig.ts\` has one trailing space, which currently fails CI on every open PR (e.g. #942). This commit removes that one trailing character so the gate returns green.
1 parent 4a0f326 commit 7e697d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/src/lib/santaconfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export const SantaConfigKeyGroups: SantaConfigGroups = {
143143
{
144144
key: "AllowedSantaCommands",
145145
description:
146-
`Array of allowed Santa Commands. If the key \`AllowedSantaCommands\` is unset (nil), all commands are allowed.
146+
`Array of allowed Santa Commands. If the key \`AllowedSantaCommands\` is unset (nil), all commands are allowed.
147147
If \`AllowedSantaCommands\` is an empty array, none of the commands are allowed.`,
148148
type: "string",
149149
syncConfigurable: false,

0 commit comments

Comments
 (0)