mirror of
https://github.com/koalaman/shellcheck
synced 2025-08-14 02:27:30 -07:00
Fixed incorrect n=1 & n=foo$n and same for $((n++))
This commit is contained in:
parent
5d26f627cf
commit
ad9db04856
4 changed files with 71 additions and 44 deletions
|
@ -19,7 +19,6 @@ shellCheck script =
|
|||
|
||||
data ShellCheckComment = ShellCheckComment { scLine :: Int, scColumn :: Int, scSeverity :: String, scMessage :: String }
|
||||
|
||||
|
||||
instance Show ShellCheckComment where
|
||||
show c = concat ["(", show $ scLine c, ",", show $ scColumn c, ") ", scSeverity c, ": ", scMessage c]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue