All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.hm.hafner.analysis.registry.ProtoLintDescriptor Maven / Gradle / Ivy

package edu.hm.hafner.analysis.registry;

import edu.hm.hafner.analysis.IssueParser;
import edu.hm.hafner.analysis.parser.ProtoLintParser;

/**
 * A descriptor for ProtoLint.
 *
 * @author Lorenz Munsch
 */
class ProtoLintDescriptor extends ParserDescriptor {
    private static final String ID = "protolint";
    private static final String NAME = "ProtoLint";

    ProtoLintDescriptor() {
        super(ID, NAME);
    }

    @Override
    public IssueParser createParser(final Option... options) {
        return new ProtoLintParser();
    }

    @Override
    public String getUrl() {
        return "https://github.com/yoheimuta/protolint";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy