mirror of
https://github.com/koalaman/shellcheck
synced 2025-08-14 02:27:30 -07:00
Don't warn for \. (regex) and \, (printf "%q" output)
This commit is contained in:
parent
b147419717
commit
6974497f45
1 changed files with 1 additions and 1 deletions
|
@ -768,7 +768,7 @@ readNormalEscaped = called "escaped char" $ do
|
|||
pos <- getPosition
|
||||
backslash
|
||||
do
|
||||
next <- (quotable <|> oneOf "?*@!+[]{}")
|
||||
next <- (quotable <|> oneOf "?*@!+[]{}.,")
|
||||
return $ if next == '\n' then "" else [next]
|
||||
<|>
|
||||
do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue