for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import re
from coalib.bearlib.abstractions.Lint import Lint
from coalib.bears.LocalBear import LocalBear
from coalib.results.RESULT_SEVERITY import RESULT_SEVERITY
class CSSLintBear(LocalBear, Lint):
executable = 'csslint'
arguments = '--format=compact'
output_regex = re.compile(
r'(?P<file_name>.+):\s*'
r'(?:line (?P<line>\d+), col (?P<col>\d+), )?'
r'(?P<severity>Error|Warning) - (?P<message>.*)')
severity_map = {
"Error": RESULT_SEVERITY.MAJOR,
"Warning": RESULT_SEVERITY.NORMAL}
def run(self, filename, file):
'''
Checks the code with `csslint`.
return self.lint(filename)