[go: nahoru, domu]

blob: a5431379051094c2a45597a600108f4be2c87036 [file] [log] [blame]
jyasskin@chromium.org452ed0ea2013-11-01 01:53:401# Defines the Chromium style for automatic reformatting.
2# http://clang.llvm.org/docs/ClangFormatStyleOptions.html
3BasedOnStyle: Chromium
thakis1c79f8642014-10-31 23:00:184# This defaults to 'Auto'. Explicitly set it for a while, so that
5# 'vector<vector<int> >' in existing files gets formatted to
6# 'vector<vector<int>>'. ('Auto' means that clang-format will only use
7# 'int>>' if the file already contains at least one such instance.)
scottmg57e3f0a2014-09-25 06:32:458Standard: Cpp11
thakisff9bdbdb2014-10-31 23:59:009
10---
11Language: Java
12# See http://crbug.com/429372 for information about this section.
13IndentWidth: 4
14ContinuationIndentWidth: 8
15ColumnLimit: 100
thakis4ad85932014-11-02 23:37:0716AllowShortBlocksOnASingleLine: false
17AllowShortFunctionsOnASingleLine: None
thakisff9bdbdb2014-10-31 23:59:0018AllowShortIfStatementsOnASingleLine: true
thakis4ad85932014-11-02 23:37:0719Cpp11BracedListStyle: false # but see http://llvm.org/PR21457