org.ec4j.ant.LinterConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of editorconfig-ant-tasks Show documentation
Show all versions of editorconfig-ant-tasks Show documentation
Ant tasks for checking whether project files comply with format rules defined in .editorconfig files and eventually also for fixing the violations
The newest version!
/**
* Copyright (c) 2018 EditorConfig Maven Plugin
* project contributors as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.ec4j.ant;
import org.ec4j.maven.lint.api.Linter;
import org.ec4j.maven.linters.TextLinter;
/**
* A configuration of a {@link Linter}.
*
* @author Peter Palaga
*/
public class LinterConfig {
private String className;
private boolean enabled = true;
private String[] excludes;
private String id;
private String[] includes;
private boolean useDefaultIncludesAndExcludes = true;
public String getClassName() {
return className.indexOf('.') < 0 ? TextLinter.class.getPackage().getName() + "." + className + "Linter"
: className;
}
public String[] getExcludes() {
return excludes;
}
public String getId() {
return id == null ? getClassName() : id;
}
public String[] getIncludes() {
return includes;
}
public boolean isEnabled() {
return enabled;
}
public boolean isUseDefaultIncludesAndExcludes() {
return useDefaultIncludesAndExcludes;
}
public void setClassName(String class_) {
this.className = class_;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
public void setExcludes(String[] excludes) {
this.excludes = excludes;
}
public void setId(String id) {
this.id = id;
}
public void setIncludes(String[] includes) {
this.includes = includes;
}
public void setUseDefaultIncludesAndExcludes(boolean useDefaultIncludesAndExcludes) {
this.useDefaultIncludesAndExcludes = useDefaultIncludesAndExcludes;
}
}