7 lines
260 B
YAML
7 lines
260 B
YAML
# Clean C formatting: LLVM base, 4-space indent, 100 columns.
|
|
# Run `clang-format -i src/*.c include/*.h` before submitting.
|
|
# Reference: https://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
|
BasedOnStyle: LLVM
|
|
IndentWidth: 4
|
|
ColumnLimit: 100
|
|
UseTab: Never
|