1# https://clang.llvm.org/docs/ClangFormatStyleOptions.html 2BasedOnStyle: LLVM 3 4# indent 4 spaces 5IndentWidth: 4 6 7# break before function 8BreakBeforeBraces: Linux 9 10# arguments and parameters in same line or one line for each 11BinPackArguments: false 12BinPackParameters: false 13 14# keep up to two empty lines 15MaxEmptyLinesToKeep: 2 16