summaryrefslogtreecommitdiff
path: root/.clang-tidy
blob: 46025aeca024fac73057ad2ba6a94698015a1296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Checks:
  - "hicpp-*"
  - "cppcoreguidelines-*"
  - "misc-*"
  - "clang-analyzer-*"
  - "-misc-include-cleaner"
  - "performance-*"
  - "readability-*"
  - "-*-named-parameter"
  - "-*-avoid-do-while"
  - "-*-magic-numbers"
  - "-*-identifier-length"
  - "-*-union-access"
  - "-*-vararg"
  - "-*-macro-usage"
  - "-*-non-private-member-variables-in-classes"
  - "-*-avoid-non-const-global-variables"
  - "-*-missing-std-forward"
  - "-*-owning-memory"
  - "-*-no-malloc"
  - "-*-avoid-c-arrays"
  - "-*-use-anonymous-namespace"
  - "-*-reinterpret-cast"
  - "-*-noexcept-move"
  - "-*-noexcept-move-constructor"
  - "-*-noexcept-move-operations"
  - "-*-bounds-array-to-pointer-decay"
  - "-*-no-array-decay"
  - "-*-signed-bitwise"
  - "-readability-use-anyofallof"
  - "-readability-function-cognitive-complexity"
  - "-readability-math-missing-parentheses"