-
Notifications
You must be signed in to change notification settings - Fork 458
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert ktlint integration to use a compile-only sourceset. (#1012, e…
…xample of #524)
- Loading branch information
Showing
4 changed files
with
100 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
lib/src/ktlint/java/com/diffplug/spotless/glue/ktlint/KtlintFormatterFunc.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* Copyright 2021 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.spotless.glue.ktlint; | ||
|
||
import java.io.File; | ||
import java.util.Collections; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.logging.Logger; | ||
|
||
import com.pinterest.ktlint.core.KtLint; | ||
import com.pinterest.ktlint.core.KtLint.Params; | ||
import com.pinterest.ktlint.core.LintError; | ||
import com.pinterest.ktlint.core.RuleSet; | ||
import com.pinterest.ktlint.ruleset.standard.StandardRuleSetProvider; | ||
|
||
import com.diffplug.spotless.FormatterFunc; | ||
|
||
import kotlin.Unit; | ||
import kotlin.jvm.functions.Function2; | ||
|
||
public class KtlintFormatterFunc implements FormatterFunc.NeedsFile { | ||
private static final Logger logger = Logger.getLogger(KtlintFormatterFunc.class.getName()); | ||
|
||
private final List<RuleSet> rulesets; | ||
private final Map<String, String> userData; | ||
private final Function2<? super LintError, ? super Boolean, Unit> formatterCallback; | ||
private final boolean isScript; | ||
|
||
public KtlintFormatterFunc(boolean isScript, Map<String, String> userData) { | ||
rulesets = Collections.singletonList(new StandardRuleSetProvider().get()); | ||
this.userData = userData; | ||
formatterCallback = new FormatterCallback(); | ||
this.isScript = isScript; | ||
} | ||
|
||
static class FormatterCallback implements Function2<LintError, Boolean, Unit> { | ||
@Override | ||
public Unit invoke(LintError lint, Boolean corrected) { | ||
if (!corrected) { | ||
throw new AssertionError("Error on line: " + lint.getLine() + ", column: " + lint.getCol() + "\n" + lint.getDetail()); | ||
} | ||
return null; | ||
} | ||
} | ||
|
||
@Override | ||
public String applyWithFile(String unix, File file) throws Exception { | ||
return KtLint.INSTANCE.format(new Params( | ||
file.getName(), | ||
unix, | ||
rulesets, | ||
userData, | ||
formatterCallback, | ||
isScript, | ||
null, | ||
false)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters