11 lines
334 B
Bash
Executable File
11 lines
334 B
Bash
Executable File
#!/usr/bin/env bash
|
|
clang-tidy \
|
|
-fix \
|
|
-fix-errors \
|
|
-header-filter=.* \
|
|
--checks=readability-braces-around-statements,misc-macro-parentheses \
|
|
*.c \
|
|
-- -I.
|
|
clang-format -style="{BasedOnStyle: llvm, IndentWidth: 4, AllowShortFunctionsOnASingleLine: None, KeepEmptyLinesAtTheStartOfBlocks: false}" -i *.{h,c}
|
|
|