com.github.sbaudoin.sonar.plugins.yaml.settings.YamlSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-yaml-plugin Show documentation
Show all versions of sonar-yaml-plugin Show documentation
YAML 1.1 plugin for SonarQube
/**
* Copyright (c) 2018-2021, Sylvain Baudoin
*
* 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 com.github.sbaudoin.sonar.plugins.yaml.settings;
import org.sonar.api.PropertyType;
import org.sonar.api.config.PropertyDefinition;
import org.sonar.api.resources.Qualifiers;
import java.util.List;
import static java.util.Arrays.asList;
/**
* Wrapper class for the class settings
*/
public class YamlSettings {
public static final String FILE_SUFFIXES_KEY = "sonar.yaml.file.suffixes";
public static final String FILTER_UTF8_LB_KEY = "sonar.yaml.filter.utf8_lb";
public static final String FILE_SUFFIXES_DEFAULT_VALUE = ".yaml,.yml";
public static final String YAML_LINT_CONF_PATH_KEY = "sonar.yaml.yamllint.conf.path";
public static final String YAML_LINT_CONF_PATH_DEFAULT_VALUE = "";
/**
* Hide constructor
*/
private YamlSettings() {
}
/**
* Returns the configuration properties of the plugin
*
* @return the configuration properties of the plugin
*/
public static List getProperties() {
return asList(
PropertyDefinition.builder(FILE_SUFFIXES_KEY)
.name("File Suffixes")
.description("Comma-separated list of suffixes for files to analyze.")
.defaultValue(FILE_SUFFIXES_DEFAULT_VALUE)
.multiValues(true)
.category("YAML")
.onQualifiers(Qualifiers.PROJECT)
.build(),
PropertyDefinition.builder(FILTER_UTF8_LB_KEY)
.name("Filter UTF-8 Line Breaks")
.description("Tells if UTF-8 line breaks (U+2028, U+2029 and U+0085) that may not be correctly supported by SonarQube are filtered out from the YAML code.")
.type(PropertyType.BOOLEAN)
.defaultValue("false")
.category("YAML")
.onQualifiers(Qualifiers.PROJECT)
.build(),
PropertyDefinition.builder(YAML_LINT_CONF_PATH_KEY)
.name("Path to a yamllint configuration file")
.description("Path (absolute or relative to project root) to a yamllint configuration file. Leave it empty to use the default .yamllint file.")
.defaultValue(YAML_LINT_CONF_PATH_DEFAULT_VALUE)
.category("YAML")
.onQualifiers(Qualifiers.PROJECT)
.build());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy