blob: b652e192dedb42bd250ed69270e6c93bc14d1526 [file] [log] [blame]
Hayden Gomes75116992019-08-15 10:09:39 -07001---
2Language: Java
3DisableFormat: true
4SortIncludes: false
5---
6Language: Cpp
Selim Gurunc4d7c012019-05-13 20:27:22 -07007BasedOnStyle: Google
Eric Jeong41641362020-02-05 11:45:49 -08008AlignOperands: false
Selim Gurunc4d7c012019-05-13 20:27:22 -07009AllowShortBlocksOnASingleLine: false
Eric Jeong41641362020-02-05 11:45:49 -080010AllowShortFunctionsOnASingleLine: Inline
11AlwaysBreakBeforeMultilineStrings: false
Selim Gurunc4d7c012019-05-13 20:27:22 -070012CommentPragmas: NOLINT:.*
Eric Jeong41641362020-02-05 11:45:49 -080013ColumnLimit: 100
14AccessModifierOffset: -4
Selim Gurunc4d7c012019-05-13 20:27:22 -070015IndentWidth: 4
Selim Gurunc4d7c012019-05-13 20:27:22 -070016TabWidth: 4
Eric Jeong41641362020-02-05 11:45:49 -080017ContinuationIndentWidth: 8
18ConstructorInitializerIndentWidth: 6
Eric Jeong8ec89bf2020-02-11 15:49:56 -080019SpacesBeforeTrailingComments: 2
Eric Jeong41641362020-02-05 11:45:49 -080020DerivePointerAlignment: false
21PointerAlignment: Left
Selim Gurunc4d7c012019-05-13 20:27:22 -070022UseTab: Never
Eric Jeong41641362020-02-05 11:45:49 -080023BreakInheritanceList: AfterColon
24BreakConstructorInitializers: AfterColon
25PenaltyBreakBeforeFirstCallParameter: 100000
Eric Jeong2de705f2020-09-21 12:19:16 -070026IncludeBlocks: Regroup
27IncludeCategories:
28 - Regex: '^<[[:alnum:]_]+\.h>'
29 Priority: 3
Eric Jeong2de705f2020-09-21 12:19:16 -070030 - 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
Eric Jeong2de705f2020-09-21 12:19:16 -070032 - Regex: '^<[[:alnum:]_]+>'
Eric Jeong8de42002020-09-23 12:51:11 -070033 Priority: 4
Lakshman Annadorai817771e2021-01-15 12:13:41 -080034 - Regex: '^<.*/[[:alnum:]_]+\.h>$|^<[[:alnum:]_]+\.sysprop\.h>$'
Eric Jeong2de705f2020-09-21 12:19:16 -070035 Priority: 2
36 - Regex: '^".*'
37 Priority: 1
Hayden Gomes75116992019-08-15 10:09:39 -070038---
Zhomart Mukhamejanovee8c0de2021-05-20 11:42:19 -070039Language: Proto
40BasedOnStyle: Google
41ColumnLimit: 100
42---