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