forked from MiniZinc/libminizinc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
40 lines (40 loc) · 1.3 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
---
Checks: '-*,
bugprone-*,
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-magic-numbers, # Allow the usage of direct number literals in expressions
'
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: _
...