Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.clang-tidy - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df5fc05bfd1165b8cc2d5f91b9a9f37729309de6 (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
33
34
35
36
37
38
39
40
41
42
43
44
Checks:  >
  -*,
  readability-*,
  -readability-uppercase-literal-suffix,
  -readability-magic-numbers,
  -readability-isolate-declaration,
  -readability-convert-member-functions-to-static,
  -readability-implicit-bool-conversion,
  -readability-avoid-const-params-in-decls,
  -readability-simplify-boolean-expr,
  -readability-make-member-function-const,

  -readability-misleading-indentation,

  -readability-else-after-return,
  -readability-inconsistent-declaration-parameter-name,
  -readability-non-const-parameter,
  -readability-redundant-preprocessor,
  -readability-function-size,
  -readability-function-size,
  -readability-redundant-string-init,
  -readability-redundant-member-init,
  -readability-const-return-type,
  -readability-static-accessed-through-instance,
  -readability-redundant-declaration,
  -readability-qualified-auto,

  bugprone-*,
  -bugprone-narrowing-conversions,
  -bugprone-unhandled-self-assignment,
  -bugprone-branch-clone,
  -bugprone-macro-parentheses,

  -bugprone-sizeof-expression,
  -bugprone-integer-division,
  -bugprone-incorrect-roundings,
  -bugprone-suspicious-string-compare,
  -bugprone-not-null-terminated-result,
  -bugprone-suspicious-missing-comma,
  -bugprone-parent-virtual-call,
  -bugprone-infinite-loop,
  -bugprone-copy-constructor-init,

WarningsAsErrors: '*'