org.sonarsource.scala.plugin.ScalaRulesDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-scala-plugin Show documentation
Show all versions of sonar-scala-plugin Show documentation
SonarSource Language analyzer
The newest version!
/*
* SonarSource Scala
* Copyright (C) 2018-2024 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the Sonar Source-Available License for more details.
*
* You should have received a copy of the Sonar Source-Available License
* along with this program; if not, see https://sonarsource.com/license/ssal/
*/
package org.sonarsource.scala.plugin;
import java.util.ArrayList;
import java.util.List;
import org.sonar.api.SonarRuntime;
import org.sonar.api.server.rule.RulesDefinition;
import org.sonarsource.analyzer.commons.RuleMetadataLoader;
import org.sonarsource.slang.checks.CommentedCodeCheck;
import org.sonarsource.slang.checks.utils.Language;
import org.sonarsource.slang.plugin.RulesDefinitionUtils;
public class ScalaRulesDefinition implements RulesDefinition {
private static final String RESOURCE_FOLDER = "org/sonar/l10n/scala/rules/scala";
private final SonarRuntime runtime;
public ScalaRulesDefinition(SonarRuntime runtime) {
this.runtime = runtime;
}
@Override
public void define(RulesDefinition.Context context) {
NewRepository repository = context
.createRepository(ScalaPlugin.SCALA_REPOSITORY_KEY, ScalaPlugin.SCALA_LANGUAGE_KEY)
.setName(ScalaPlugin.REPOSITORY_NAME);
RuleMetadataLoader ruleMetadataLoader = new RuleMetadataLoader(RESOURCE_FOLDER, ScalaProfileDefinition.PATH_TO_JSON, runtime);
List> checks = new ArrayList<>(ScalaCheckList.checks());
checks.add(CommentedCodeCheck.class);
ruleMetadataLoader.addRulesByAnnotatedClass(repository, checks);
RulesDefinitionUtils.setDefaultValuesForParameters(repository, checks, Language.SCALA);
repository.done();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy