Skip to content

Commit

Permalink
Merge pull request #7 from BarbUk/fix/new-syntax
Browse files Browse the repository at this point in the history
Handle new sublime syntax: bash
  • Loading branch information
NotSqrt authored Oct 12, 2017
2 parents 96ecfee + 4bf01c3 commit 3c4d2b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
class Shellcheck(Linter):
"""Provides an interface to shellcheck."""

syntax = 'shell-unix-generic'
syntax = ('shell-unix-generic', 'bash')
cmd = 'shellcheck --format gcc -'
regex = (
r'^.+?:(?P<line>\d+):(?P<col>\d+): '
Expand Down

0 comments on commit 3c4d2b4

Please sign in to comment.