blob: dfd841afa7f34b652ff3bc40266c011160a15044 [file] [log] [blame]
# Copyright 2020 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Defines the Chromium style for automatic reformatting.
# https://clang.llvm.org/docs/ClangFormatStyleOptions.html
BasedOnStyle: Chromium
# Please keep all directives after this one sorted alphabetically.
# C++ settings.
---
Language: Cpp
# This is permitted by the Google and Chromium style guides.
AllowAllParametersOfDeclarationOnNextLine: true
# Don't reflow comments to keep the original copyright header.
ReflowComments: false
# cpplint.py does smarter #include sorting than clang-format (the former ignores
# case and changes '-' to '_').
SortIncludes: false