about summary refs log tree commit diff stats
path: root/utils/.clang-format
diff options
context:
space:
mode:
authorMarc <foxtrot@malloc.me>2021-12-17 18:52:36 +0000
committerMarc <foxtrot@malloc.me>2021-12-17 19:31:25 +0000
commitcd1df65dc36ac35d526de195284d5ebf18e1f92b (patch)
treefc0c163cd9f86d452fec1eb90d48a22d67cf4256 /utils/.clang-format
parent8e09d29df19312583747a3de00fe4269c17e6586 (diff)
downloadlibwifi-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-format8
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---
2BasedOnStyle: LLVM
3IndentWidth: '4'
4SpaceAfterCStyleCast: 'true'
5ColumnLimit: 400
6AllowShortFunctionsOnASingleLine: None
7IndentCaseLabels: 'true'
8...