from lint import Linter class Perl(Linter): language = 'perl' cmd = ('perl', '-c') regex = r'(?P.+?) at .+? line (?P\d+)(, near "(?P.+?)")?'