com.cj.jshintmojo.reporter.JSHintReporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jshint-maven-plugin Show documentation
Show all versions of jshint-maven-plugin Show documentation
a maven mojo that integrates the 'jshint' javascript preprocessor
package com.cj.jshintmojo.reporter;
import java.util.Map;
import com.cj.jshintmojo.cache.Result;
/**
* A interface for JSHint reporting class.
*/
public interface JSHintReporter {
/**
* Creates a lint reporting string.
*
* @param results lint results to report.
* @return reporting string.
*/
public String report(Map results);
}