From 04ca05260ab5a7cde51ec85a896091a180f95936 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCrten?= <sebastian@mobanisto.de> Date: Thu, 4 Nov 2021 15:13:31 +0100 Subject: [PATCH] Checkstyle: count tabs as four characters, not eight --- config/checkstyle/checkstyle.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/config/checkstyle/checkstyle.xml b/config/checkstyle/checkstyle.xml index b5efe880..1e63e0e3 100644 --- a/config/checkstyle/checkstyle.xml +++ b/config/checkstyle/checkstyle.xml @@ -2,6 +2,7 @@ "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" "https://checkstyle.org/dtds/configuration_1_3.dtd"> <module name="Checker"> + <property name="tabWidth" value="4"/> <property name="charset" value="UTF-8"/> <module name="LineLength"> <property name="fileExtensions" value="java"/> -- GitLab