From 51009603037014d0536407f24e316acd7aa58580 Mon Sep 17 00:00:00 2001 From: Kamil Cukrowski Date: Wed, 26 May 2021 10:58:38 +0200 Subject: [PATCH] Add a comma to function characters Bash has very relaxed function name rules and a comma is also a valid character. This commit silences SC1036 check when a function name has a comma in its name. --- src/ShellCheck/Parser.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ShellCheck/Parser.hs b/src/ShellCheck/Parser.hs index 3c16d5d..bf4fce4 100644 --- a/src/ShellCheck/Parser.hs +++ b/src/ShellCheck/Parser.hs @@ -66,7 +66,7 @@ doubleQuote = char '"' variableStart = upper <|> lower <|> oneOf "_" variableChars = upper <|> lower <|> digit <|> oneOf "_" -- Chars to allow in function names -functionChars = variableChars <|> oneOf ":+?-./^@" +functionChars = variableChars <|> oneOf ":+?-./^@," -- Chars to allow in functions using the 'function' keyword extendedFunctionChars = functionChars <|> oneOf "[]*=!" specialVariable = oneOf (concat specialVariables)