add dissect_ndr_uvarray_block
[metze/wireshark/wip.git] / .clang-tidy
1 # You can use clang-tidy with CMake by:
2 #
3 # Checking files individually by passing `-DCMAKE_EXPORT_COMPILE_COMMANDS=ON`
4 # to CMake, then running `clang-tidy <file>`
5 #
6 # Checking the entire build by passing `-DCMAKE_C_CLANG_TIDY=clang-tidy`
7 # and `-DCMAKE_CXX_CLANG_TIDY=clang-tidy` to CMake
8
9 # A full list of Clang-tidy checks can be found at
10 # https://clang.llvm.org/extra/clang-tidy/checks/list.html
11 ExtraArgs:
12   - '-Wno-unknown-warning-option'
13
14 # Checks to run. A complete list of checks can be found at
15 # https://clang.llvm.org/extra/clang-tidy/checks/list.html
16 Checks:
17   - '-*'
18   - 'misc-no-recursion'
19
20 # We can remove the configs under epan and plugins, and wiretap if we
21 # ever uncomment this.
22
23 #WarningsAsErrors: 'misc-no-recursion'
24
25 UseColor: true