1# SPDX-License-Identifier: MIT 2# Copyright 2020 Google LLC 3# 4# 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 8# 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 18