From 94b48d59a4b826805aab553cb16732e502523ba3 Mon Sep 17 00:00:00 2001 From: Johannes Lorenz Date: Thu, 30 May 2019 21:28:46 +0200 Subject: [PATCH] Use tab width of 4 instead of 8 --- .clang-format | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.clang-format b/.clang-format index acb7658b8a6..f231ec945fa 100644 --- a/.clang-format +++ b/.clang-format @@ -4,22 +4,22 @@ Language: Cpp Standard: Cpp11 # Identation -TabWidth: 8 +TabWidth: 4 UseTab: Always -IndentWidth: 8 +IndentWidth: 4 ColumnLimit: 80 # Identation detail AlignAfterOpenBracket: DontAlign -ContinuationIndentWidth: 8 +ContinuationIndentWidth: 4 BreakConstructorInitializers: AfterColon -ConstructorInitializerIndentWidth: 8 +ConstructorInitializerIndentWidth: 4 ConstructorInitializerAllOnOneLineOrOnePerLine: false BinPackParameters: true BinPackArguments: true AlignOperands: false AlignEscapedNewlines: DontAlign -AccessModifierOffset: -8 +AccessModifierOffset: -4 # Includes IncludeBlocks: Regroup