aboutsummaryrefslogtreecommitdiff
path: root/.clang-tidy
blob: 1fe87ba50134024b36d13903e5cd87eb42e57871 (plain) (blame)
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
33
34
35
36
37
38
39
40
41
42
Checks: >
  -*,

  bugprone-*,
  google-*,
  misc-*,
  modernize-*,
  performance-*,
  portability-*,
  readability-*,

  -bugprone-assignment-in-if-condition,
  -bugprone-branch-clone,
  -bugprone-easily-swappable-parameters,
  -bugprone-implicit-widening-of-multiplication-result,
  -bugprone-macro-parentheses,
  -bugprone-narrowing-conversions,
  -bugprone-not-null-terminated-result,
  -bugprone-reserved-identifier,
  -bugprone-sizeof-expression,
  -bugprone-suspicious-include,
  -bugprone-suspicious-memory-comparison,
  -bugprone-unused-return-value,
  -google-readability-braces-around-statements,
  -google-readability-function-size,
  -misc-misplaced-const,
  -misc-no-recursion,
  -misc-unused-parameters,
  -modernize-macro-to-enum,
  -performance-no-int-to-ptr,
  -readability-avoid-const-params-in-decls,
  -readability-braces-around-statements,
  -readability-else-after-return,
  -readability-function-cognitive-complexity,
  -readability-function-size,
  -readability-identifier-length,
  -readability-isolate-declaration,
  -readability-magic-numbers,
  -readability-misleading-indentation,
  -readability-redundant-declaration,
  -readability-redundant-function-ptr-dereference,
  -readability-suspicious-call-argument,