We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19ef946 commit e4e59d3Copy full SHA for e4e59d3
lib/src/main/java/com/diffplug/spotless/biome/BiomeStep.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2016-2025 DiffPlug
+ * Copyright 2016-2026 DiffPlug
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -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