11 lines
334 B
Bash
11 lines
334 B
Bash
|
#!/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}
|
||
|
|