| 1234567891011121314151617181920212223242526272829 | ---BasedOnStyle: GoogleAllowShortBlocksOnASingleLine: 'false'AllowShortCaseLabelsOnASingleLine: 'false'AllowShortFunctionsOnASingleLine: InlineAllowShortIfStatementsOnASingleLine: NeverAllowShortLoopsOnASingleLine: 'false'BreakConstructorInitializers: BeforeCommaColumnLimit: '100'FixNamespaceComments: 'true'IncludeBlocks: RegroupIndentWidth: '4'NamespaceIndentation: InnerSpacesBeforeTrailingComments: '1'Language: CppStandard: Cpp11IncludeCategories:  - Regex: '^<types/'    Priority: '4'  - Regex: '^<(kernel|fs|net|driver)/'    Priority: '5'  - Regex: '^<.*\.h>'    Priority: '3'  - Regex: '^<.*>'    Priority: '2'  - Regex: '.*'    Priority: '1'...
 |