|
|
|
|
|
by eridius
4156 days ago
|
|
Shellcheck is great. The Vim Syntastic plugin already knows about Shellcheck so if you use Syntastic and install Shellcheck you'll automatically start getting warnings on your code. BTW, it can be a little hard to figure this out, but if Shellcheck gives you a warning that you want to ignore (because you intended to trigger that behavior), you can put the following comment above the offending line: # shellcheck disable=SC1234
where "SC1234" is replaced with the actual error code that Shellcheck gives. |
|