diff options
author | Marc <foxtrot@malloc.me> | 2021-12-17 18:52:36 +0000 |
---|---|---|
committer | Marc <foxtrot@malloc.me> | 2021-12-17 19:31:25 +0000 |
commit | cd1df65dc36ac35d526de195284d5ebf18e1f92b (patch) | |
tree | fc0c163cd9f86d452fec1eb90d48a22d67cf4256 /utils/.clang-format | |
parent | 8e09d29df19312583747a3de00fe4269c17e6586 (diff) | |
download | libwifi-cd1df65dc36ac35d526de195284d5ebf18e1f92b.tar.gz libwifi-cd1df65dc36ac35d526de195284d5ebf18e1f92b.tar.bz2 libwifi-cd1df65dc36ac35d526de195284d5ebf18e1f92b.zip |
test: Add ctests for generation functions.
This commit also enforces error code checking on functions inside of the generation functions, such as for `libwifi_quick_add_tag`.
Diffstat (limited to 'utils/.clang-format')
-rw-r--r-- | utils/.clang-format | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/utils/.clang-format b/utils/.clang-format new file mode 100644 index 0000000..111249f --- /dev/null +++ b/utils/.clang-format | |||
@@ -0,0 +1,8 @@ | |||
1 | --- | ||
2 | BasedOnStyle: LLVM | ||
3 | IndentWidth: '4' | ||
4 | SpaceAfterCStyleCast: 'true' | ||
5 | ColumnLimit: 400 | ||
6 | AllowShortFunctionsOnASingleLine: None | ||
7 | IndentCaseLabels: 'true' | ||
8 | ... | ||