Reputation: 1
I'm trying to use CSSLint with Jenkins Continious Integration using MSBuild. I didn't found a plugin to install on Jenkins.
Does anyone knows how I can find a plugin that has the same functionality as CSSLint which can be installed with Jenkins?
Upvotes: 0
Views: 510
Reputation: 22089
I believe you are looking for Violation plugin. The latest versions of the Violations Plugin allow you to report output using:
--format=lint-xml
and csslint violations configuration
OR --format=checkstyle-xml
and checkstyle violations configuration
Upvotes: 1