We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19ef946 commit 6545a17Copy full SHA for 6545a17
lib/src/main/java/com/diffplug/spotless/biome/BiomeStep.java
@@ -393,7 +393,9 @@ private String[] buildBiomeCommand(File file) {
393
var fileName = resolveFileName(file);
394
var argList = new ArrayList<String>();
395
argList.add(pathToExe);
396
- argList.add("format");
+ argList.add("check");
397
+ argList.add("--write");
398
+ argList.add("--javascript-linter-enabled=false");
399
argList.add("--stdin-file-path");
400
argList.add(fileName);
401
if (configPath != null) {
0 commit comments