Package ro.isdc.wro.extensions.processor.js

Source Code of ro.isdc.wro.extensions.processor.js.JsHintProcessor

/*
* Copyright (C) 2011.
* All rights reserved.
*/
package ro.isdc.wro.extensions.processor.js;

import ro.isdc.wro.extensions.processor.support.linter.AbstractLinter;
import ro.isdc.wro.extensions.processor.support.linter.JsHint;
import ro.isdc.wro.model.resource.ResourceType;
import ro.isdc.wro.model.resource.SupportedResourceType;


/**
* Processor which analyze the js code and warns you about any problems. The processing result won't change no matter if
* the processed script contains errors or not.
* <p/>
* The version of jshint used by this processor is a snapshot committed on the following date: 2012-11-13 05:25:37.
*
* @author Alex Objelean
* @since 1.3.5
* @created 1 Mar 2011
*/
@SupportedResourceType(ResourceType.JS)
public class JsHintProcessor
  extends AbstractLinterProcessor {
  public static final String ALIAS = "jsHint";
  /**
   * {@inheritDoc}
   */
  @Override
  protected AbstractLinter newLinter() {
    return new JsHint();
  }
}
TOP

Related Classes of ro.isdc.wro.extensions.processor.js.JsHintProcessor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.