diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-07-29 13:16:21 +0100 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2023-08-02 18:35:08 +0200 |
commit | f256b836f4ea88e253d3a54e10faa124bc5c04f9 (patch) | |
tree | 5463e0071af89255c4a9c4c05012c2944f6ed8b9 | |
parent | 71fb38c91f16ce46a7103d8a606de2e0aeb04395 (diff) | |
download | PrismLauncher-f256b836f4ea88e253d3a54e10faa124bc5c04f9.tar.gz PrismLauncher-f256b836f4ea88e253d3a54e10faa124bc5c04f9.tar.bz2 PrismLauncher-f256b836f4ea88e253d3a54e10faa124bc5c04f9.zip |
Make more options generic
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
-rw-r--r-- | .clang-format | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.clang-format b/.clang-format index 83cfeb86..114bcba5 100644 --- a/.clang-format +++ b/.clang-format @@ -1,11 +1,12 @@ --- BasedOnStyle: Chromium IndentWidth: 4 +AllowShortIfStatementsOnASingleLine: false +ColumnLimit: 140 --- Language: Cpp AlignConsecutiveMacros: None AlignConsecutiveAssignments: None -AllowShortIfStatementsOnASingleLine: false BraceWrapping: AfterFunction: true SplitEmptyFunction: false @@ -13,5 +14,4 @@ BraceWrapping: SplitEmptyNamespace: false BreakBeforeBraces: Custom BreakConstructorInitializers: BeforeComma -ColumnLimit: 140 Cpp11BracedListStyle: false |