Remove: Indentation module, as Checkstyle can not match Spotless

Explanation: Spotless uses the context to calculate the required indentation
This commit is contained in:
Lars Simon Winzer
2026-03-18 17:41:38 +01:00
parent 97c2dc6a02
commit e1500845eb
-10
View File
@@ -42,16 +42,6 @@
"/>
</module>
<!-- Enforce indentation of four whitespaces -->
<!-- https://checkstyle.sourceforge.io/checks/misc/indentation.html -->
<module name="Indentation">
<property name="basicOffset" value="4"/>
<property name="caseIndent" value="4"/>
<property name="throwsIndent" value="4"/>
<property name="arrayInitIndent" value="4"/>
<property name="lineWrappingIndentation" value="8"/>
</module>
<!-- No wildcard imports (import x.*) -->
<!-- https://checkstyle.sourceforge.io/checks/imports/avoidstarimport.html -->
<module name="AvoidStarImport"/>