27282930313233
/** * {@inheritDoc} */ @Override protected AbstractLinter newLinter() { return new JsLint(); }
101102103104105106107
* * @param options The lint options. Required. * @return A new JsLint processor. */ public static ResourcePreProcessor jsLint(final LintOptions options) { return new LinterProcessor(new JsLint(), options); }