From 786cf4978dd76dcd945428b27014a8edc2dfb958 Mon Sep 17 00:00:00 2001 From: psi29a Date: Fri, 23 Oct 2020 09:21:48 +0000 Subject: [PATCH] Fix clang12 issue; remove javascript/objc --- .clang-format | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.clang-format b/.clang-format index cc0698d887..ec2bd1bc4b 100644 --- a/.clang-format +++ b/.clang-format @@ -1,6 +1,5 @@ --- Language: Cpp -# BasedOnStyle: WebKit AccessModifierOffset: -4 AlignAfterOpenBracket: DontAlign AlignConsecutiveAssignments: false @@ -72,16 +71,11 @@ IndentCaseLabels: false IndentPPDirectives: None IndentWidth: 4 IndentWrappedFunctionNames: false -JavaScriptQuotes: Leave -JavaScriptWrapImports: true KeepEmptyLinesAtTheStartOfBlocks: true MacroBlockBegin: '' MacroBlockEnd: '' MaxEmptyLinesToKeep: 1 NamespaceIndentation: Inner -ObjCBlockIndentWidth: 4 -ObjCSpaceAfterProperty: true -ObjCSpaceBeforeProtocolList: true PenaltyBreakAssignment: 2 PenaltyBreakBeforeFirstCallParameter: 19 PenaltyBreakComment: 300 @@ -108,7 +102,7 @@ SpacesInContainerLiterals: true SpacesInCStyleCastParentheses: false SpacesInParentheses: false SpacesInSquareBrackets: false -Standard: Cpp17 +Standard: cpp17 TabWidth: 4 UseTab: Never ...