mirror of
https://github.com/koalaman/shellcheck
synced 2025-07-13 16:43:20 -07:00
SC2295 Warn about unquoted variables in PE patterns (fixes #2290)
This commit is contained in:
parent
9b61506e0b
commit
cf8066c07c
3 changed files with 33 additions and 3 deletions
|
@ -167,6 +167,8 @@ errWithFix :: MonadWriter [TokenComment] m => Id -> Code -> String -> Fix -> m (
|
|||
errWithFix = addCommentWithFix ErrorC
|
||||
warnWithFix :: MonadWriter [TokenComment] m => Id -> Code -> String -> Fix -> m ()
|
||||
warnWithFix = addCommentWithFix WarningC
|
||||
infoWithFix :: MonadWriter [TokenComment] m => Id -> Code -> String -> Fix -> m ()
|
||||
infoWithFix = addCommentWithFix InfoC
|
||||
styleWithFix :: MonadWriter [TokenComment] m => Id -> Code -> String -> Fix -> m ()
|
||||
styleWithFix = addCommentWithFix StyleC
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue