-
Notifications
You must be signed in to change notification settings - Fork 81
/
.clang-tidy
49 lines (49 loc) · 1.64 KB
/
.clang-tidy
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
45
46
47
48
49
---
Checks: '-*,
bugprone-*,
-bugprone-easily-swappable-parameters,
-bugprone-exception-escape,
modernize-deprecated-headers,
modernize-loop-convert,
modernize-pass-by-value,
modernize-redundant-void-arg,
modernize-use-auto,
modernize-use-emplace,
modernize-use-nullptr,
modernize-use-override,
performace-*,
readability-*,
-readability-use-anyofallof,
-readability-magic-numbers,
-readability-function-cognitive-complexity,
-readability-suspicious-call-argument,
-readability-identifier-length,
-readability-simplify-boolean-expr,
'
# magic-numbers: Allow the usage of direct number literals in expressions
# congitive-complexity: Do not check function complexity (TODO?)
WarningsAsErrors: '*'
HeaderFilterRegex: 'include/minizinc/[A-Za-z].*'
FormatStyle: file
CheckOptions:
- key: readability-identifier-naming.ClassCase
value: CamelCase
- key: readability-identifier-naming.StructCase
value: CamelCase
- key: readability-identifier-naming.MethodCase
value: camelBack
- key: readability-identifier-naming.ClassMethodCase
value: camelBack
- key: readability-identifier-naming.FunctionCase
value: lower_case
- key: readability-identifier-naming.MemberCase
value: camelBack
- key: readability-identifier-naming.PrivateMemberCase
value: camelBack
- key: readability-identifier-naming.PrivateMemberPrefix
value: _
- key: readability-identifier-naming.ProtectedMemberCase
value: camelBack
- key: readability-identifier-naming.ProtectedMemberPrefix
value: _
...