1# Copyright (c) 2022 Huawei Device Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13 14BasedOnStyle: Webkit 15ColumnLimit: 120 16PointerAlignment: Left 17AlignAfterOpenBracket: DontAlign 18ContinuationIndentWidth: 4 19AlignTrailingComments: true 20AlignConsecutiveMacros: Consecutive 21IndentCaseLabels: true 22BreakBeforeBinaryOperators: None 23SpaceBeforeParens: ControlStatementsExceptControlMacros 24SpacesInCStyleCastParentheses: false 25AlignEscapedNewlines: Left 26NamespaceIndentation: None 27FixNamespaceComments: true 28BreakConstructorInitializers: AfterColon 29AlignArrayOfStructures: Left 30AllowShortFunctionsOnASingleLine: Empty 31AllowShortLambdasOnASingleLine: Empty 32AlwaysBreakTemplateDeclarations: Yes 33SpaceInEmptyBlock: false 34LambdaBodyIndentation: Signature 35BreakBeforeTernaryOperators: false 36Cpp11BracedListStyle: true 37SpaceAroundPointerQualifiers: Both 38