blob: 834d0a4f7b56dd0b86a45a8379c4c389826c5b38 [file] [log] [blame]
Eric Biggersab794fd2020-07-31 12:11:56 -07001# SPDX-License-Identifier: MIT
Eric Biggers26168252020-06-14 23:18:44 -07002# Copyright 2020 Google LLC
3#
Eric Biggersab794fd2020-07-31 12:11:56 -07004# Use of this source code is governed by an MIT-style
5# license that can be found in the LICENSE file or at
6# https://opensource.org/licenses/MIT.
7
Eric Biggers26168252020-06-14 23:18:44 -07008# Formatting settings to approximate the Linux kernel coding style.
9BasedOnStyle: LLVM
10AllowShortFunctionsOnASingleLine: false
11AllowShortIfStatementsOnASingleLine: false
12BreakBeforeBraces: Linux
13Cpp11BracedListStyle: false
14IncludeBlocks: Preserve
15IndentCaseLabels: false
16IndentWidth: 8
17UseTab: Always