1--- 2Language: Java 3DisableFormat: true 4SortIncludes: false 5--- 6Language: Cpp 7BasedOnStyle: Google 8AlignOperands: false 9AllowShortBlocksOnASingleLine: false 10AllowShortFunctionsOnASingleLine: Inline 11AlwaysBreakBeforeMultilineStrings: false 12CommentPragmas: NOLINT:.* 13ColumnLimit: 100 14AccessModifierOffset: -4 15IndentWidth: 4 16TabWidth: 4 17ContinuationIndentWidth: 8 18ConstructorInitializerIndentWidth: 6 19SpacesBeforeTrailingComments: 2 20DerivePointerAlignment: false 21PointerAlignment: Left 22UseTab: Never 23BreakInheritanceList: AfterColon 24BreakConstructorInitializers: AfterColon 25PenaltyBreakBeforeFirstCallParameter: 100000 26IncludeBlocks: Regroup 27IncludeCategories: 28 - Regex: '^<[[:alnum:]_]+\.h>' 29 Priority: 3 30 - Regex: '^<sys/(auxv|cachectl|capability|cdefs|endian|epoll|errno|eventfd|fcntl|file|fsuid|ifunc|inotify|ioctl|ipc|klog|limits|mman|mount|msg|mtio|param|personality|poll|prctl|procfs|ptrace|queue|quota|random|reboot|reg|resource|select|sem|sendfile|shm|signalfd|signal|socket|statfs|stat|statvfs|swap|syscall|sysconf|sysinfo|syslog|sysmacros|_system_properties|system_properties|thread_properties|time|timerfd|times|timex|ttydefaults|types|ucontext|uio|un|unistd|user|utsname|vfs|vt|wait|xattr)\.h>' 31 Priority: 3 32 - Regex: '^<[[:alnum:]_]+>' 33 Priority: 4 34 - Regex: '^<.*/[[:alnum:]_]+\.h>$|^<[[:alnum:]_]+\.sysprop\.h>$' 35 Priority: 2 36 - Regex: '^".*' 37 Priority: 1 38--- 39Language: Proto 40BasedOnStyle: Google 41ColumnLimit: 100 42--- 43