mirror of
https://github.com/koalaman/shellcheck
synced 2025-08-14 02:27:30 -07:00
Fixed quoted ~ warning to only trigger for ~/
This commit is contained in:
parent
dcc10bbdf6
commit
0a2cf208c8
2 changed files with 2 additions and 2 deletions
|
@ -950,7 +950,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