Cleanup: use compliant YAML for '.clang-format'

While clang-format could read the configuration file,
it failed to load in `pyyaml` for e.g.
This commit is contained in:
Campbell Barton 2023-01-03 11:51:40 +11:00
parent 0f2b1f9ec9
commit aad8f1a41b
Notes: blender-bot 2023-02-14 11:20:29 +01:00
Referenced by issue #103635, Metal backend shows everything in pink
1 changed files with 11 additions and 11 deletions

View File

@ -61,17 +61,17 @@ ContinuationIndentWidth: 4
# This tries to match Blender's style as much as possible. One
BreakBeforeBraces: Custom
BraceWrapping: {
AfterClass: 'false'
AfterControlStatement: 'false'
AfterEnum : 'false'
AfterFunction : 'true'
AfterNamespace : 'false'
AfterStruct : 'false'
AfterUnion : 'false'
BeforeCatch : 'true'
BeforeElse : 'true'
IndentBraces : 'false'
AfterObjCDeclaration: 'true'
AfterClass: 'false',
AfterControlStatement: 'false',
AfterEnum : 'false',
AfterFunction : 'true',
AfterNamespace : 'false',
AfterStruct : 'false',
AfterUnion : 'false',
BeforeCatch : 'true',
BeforeElse : 'true',
IndentBraces : 'false',
AfterObjCDeclaration: 'true',
}
# For switch statements, indent the cases.