• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copied from art/.clang-format with IndentWidth and TabWidth modified to 4 for Cpp.
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
25IndentWidth: 4
26TabWidth: 4
27
28---
29
30Language: Java
31
32ColumnLimit: 100
33CommentPragmas: (NOLINT|CHECK[^ ]*):.*
34ContinuationIndentWidth: 8
35IndentWidth: 4
36JavaImportGroups:
37- android
38- androidx
39- com.android
40- dalvik
41- libcore
42- com
43- junit
44- net
45- org
46- java
47- javax
48