Green Sky
9ace11a0e2
8f0d505f9a feat: add ngc events 9b8216e70c refactor: Make event dispatch ordered by receive time. 814c12a6f4 cleanup: Add dynamically derived array sizes to the API. 226b23be12 cleanup: Add explicit array sizes to toxencryptsave. ef33cb4de0 cleanup: Add Toxav alias for ToxAV. 1da723b34d cleanup: Make Tox_Options a typedef. b148a2afff chore: Simplify msvc build using vcpkg. 5cac6d7eb1 cleanup: Move `tox_get_system` out of the public API. c9ca4007e3 refactor: Align group message sending with other send functions. 6c6c0b1b1b cleanup: Make setters take non-const `Tox *`. a76f758d70 cleanup: Mark arrays in the tox API as `[]` instead of `*`. baf6d1f6cf cleanup: Make array params in toxav `[]` instead of `*`. 79f55bd06a cleanup: Put the size of fixed arrays into the API types. 1e73698db2 cleanup: Add typedefs for public API int identifiers. cac074c57f chore: Add fetch-sha256 script to update bootstrap node hash. 32576656bb Make the comment capitalization uniform aff4dda17c Spellcheck tox-bootstrapd 40b5fbbe9d chore: Remove settings.yml in favour of hs-github-tools. ebafd51be7 chore: Use GPL license with https. 0e42752f0f cleanup: Move all vptr-to-ptr casts to the beginning of a function. 5407384211 cleanup: Use github actions matrix to simplify CI. 82d8265688 fix: Use QueryPerformanceCounter on windows for monotonic time. 1224e656e3 chore: Add `net_(new|kill)_strerror` to cppcheck's allocators. 6a90ddfe4e cleanup: Run clang-tidy on headers, as well. bd930cc80a cleanup: Make TCP connection failures a warning instead of error. fad6e4e173 cleanup: Make all .c files include the headers they need. ef4897a898 cleanup: Upgrade to clang-tidy-17 and fix some warnings. REVERT: f1df709b87 feat: add ngc events REVERT: 1b6c907235 refactor: Make event dispatch ordered by receive time. git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: 8f0d505f9a598cc41c682178e1589bcc01efe9cb
48 lines
2.8 KiB
YAML
48 lines
2.8 KiB
YAML
# vim:ft=yaml
|
|
HeaderFilterRegex: "/c-toxcore/[^/]+/[^.].+"
|
|
CheckOptions:
|
|
- key: readability-identifier-naming.ClassCase
|
|
value: Camel_Snake_Case
|
|
- key: readability-identifier-naming.ConstantCase
|
|
value: lower_case
|
|
# bootstrap-daemon has these.
|
|
- key: readability-identifier-naming.ConstantIgnoredRegexp
|
|
value: "^NAME_.*"
|
|
- key: readability-identifier-naming.EnumCase
|
|
value: Camel_Snake_Case
|
|
- key: readability-identifier-naming.EnumConstantCase
|
|
value: UPPER_CASE
|
|
- key: readability-identifier-naming.FunctionCase
|
|
value: lower_case
|
|
- key: readability-identifier-naming.GlobalConstantCase
|
|
value: lower_case
|
|
- key: readability-identifier-naming.MemberCase
|
|
value: lower_case
|
|
- key: readability-identifier-naming.MacroDefinitionCase
|
|
value: UPPER_CASE
|
|
- key: readability-identifier-naming.MacroDefinitionIgnoredRegexp
|
|
value: "^_.*|nullable|non_null|nullptr|static_assert|ck_.*"
|
|
- key: readability-identifier-naming.ParameterCase
|
|
value: lower_case
|
|
- key: readability-identifier-naming.StructCase
|
|
value: Camel_Snake_Case
|
|
- key: readability-identifier-naming.TypedefCase
|
|
value: Camel_Snake_Case
|
|
- key: readability-identifier-naming.TypedefIgnoredRegexp
|
|
value: ".*_cb"
|
|
- key: readability-identifier-naming.UnionCase
|
|
value: Camel_Snake_Case
|
|
- key: readability-identifier-naming.VariableCase
|
|
value: lower_case
|
|
|
|
- key: llvmlibc-restrict-system-libc-headers.Includes
|
|
value: "arpa/inet.h,assert.h,ctype.h,errno.h,fcntl.h,getopt.h,libconfig.h,limits.h,linux/if.h,math.h,netdb.h,netinet/in.h,opus.h,pthread.h,signal.h,sodium/crypto_scalarmult_curve25519.h,sodium.h,sodium/randombytes.h,stdarg.h,stdbool.h,stddef.h,stdint.h,stdio.h,stdlib.h,string.h,sys/ioctl.h,syslog.h,sys/resource.h,sys/socket.h,sys/stat.h,sys/time.h,sys/types.h,time.h,unistd.h,vpx/vp8cx.h,vpx/vp8dx.h,vpx/vpx_decoder.h,vpx/vpx_encoder.h,vpx/vpx_image.h"
|
|
- key: hicpp-signed-bitwise.IgnorePositiveIntegerLiterals
|
|
value: true
|
|
- key: concurrency-mt-unsafe.FunctionSet
|
|
value: posix
|
|
- key: misc-include-cleaner.IgnoreHeaders
|
|
value: "pthread.h;stdbool.h;stddef.h;stdint.;stdint.h;stdint...;cstdint;sodium.*;sys/.*;unistd.h;opus.*;vpx.*;attributes.h;tox_struct.h"
|
|
- key: readability-function-cognitive-complexity.Threshold
|
|
value: 153 # TODO(iphydf): Decrease. tox_new is the highest at the moment.
|