private List<ValidationError> validateCSS(Source<?> source, DefType defType) throws IOException {
String sourceUrl = source.getUrl().toString();
String sourceCode = source.getContents();
return new CSSLintValidator().validate(sourceUrl, sourceCode, true);
}