[flang] Alphabetize and remove settings that match LLVM defaults.

Original-commit: flang-compiler/f18@82b1803f76
This commit is contained in:
peter klausler 2018-02-05 16:08:46 -08:00
parent 673626b1c8
commit 94c26b688e
1 changed files with 5 additions and 7 deletions

View File

@ -1,20 +1,18 @@
---
# See: https://clang.llvm.org/docs/ClangFormatStyleOptions.html
BasedOnStyle: LLVM
SpacesBeforeTrailingComments: 2
AlignAfterOpenBracket: DontAlign
AlignEscapedNewlines: DontAlign
AllowShortCaseLabelsOnASingleLine: true
AllowShortIfStatementsOnASingleLine: true
ConstructorInitializerIndentWidth: 2
AlignAfterOpenBracket: DontAlign
AlignOperands: false
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlignOperands: false
AlignTrailingComments: false
ConstructorInitializerIndentWidth: 2
SpaceAfterTemplateKeyword: false
BreakBeforeBinaryOperators: None
BreakBeforeTernaryOperators: true
ContinuationIndentWidth: 4
SpacesBeforeTrailingComments: 2
Standard: Cpp17
...
# vim:set filetype=yaml: