• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Please keep in sync with .clang-format-java-2 where applicable.
2---
3BasedOnStyle: Google
4---
5
6Language: Cpp
7
8AlignConsecutiveMacros: AcrossComments
9AllowShortBlocksOnASingleLine: Empty
10AllowShortCaseLabelsOnASingleLine: false
11AllowShortIfStatementsOnASingleLine: Never
12AllowShortLoopsOnASingleLine: false
13AttributeMacros: ['__', 'NO_RETURN']
14BinPackArguments: false
15BinPackParameters: false
16BreakConstructorInitializers: BeforeColon
17BreakBeforeTernaryOperators: false
18ColumnLimit: 100
19CommentPragmas: NOLINT:.*
20ConstructorInitializerAllOnOneLineOrOnePerLine: true
21Cpp11BracedListStyle: true
22DerivePointerAlignment: false
23FixNamespaceComments: true
24PointerAlignment: Left
25TabWidth: 2
26
27---
28
29Language: Java
30
31ColumnLimit: 100
32CommentPragmas: (NOLINT|CHECK[^ ]*):.*
33ContinuationIndentWidth: 8
34IndentWidth: 4
35JavaImportGroups:
36- android
37- androidx
38- com.android
39- dalvik
40- libcore
41- com
42- junit
43- net
44- org
45- java
46- javax
47