this repo has no description
1---
2Checks: '-*,
3 bugprone-*,
4 modernize-deprecated-headers,
5 modernize-loop-convert,
6 modernize-pass-by-value,
7 modernize-redundant-void-arg,
8 modernize-use-auto,
9 modernize-use-emplace,
10 modernize-use-nullptr,
11 modernize-use-override,
12 performace-*,
13 readability-*,
14 -readability-magic-numbers, # Allow the usage of direct number literals in expressions
15'
16WarningsAsErrors: '*'
17HeaderFilterRegex: 'include/minizinc/[A-Za-z].*'
18FormatStyle: file
19CheckOptions:
20 - key: readability-identifier-naming.ClassCase
21 value: CamelCase
22 - key: readability-identifier-naming.StructCase
23 value: CamelCase
24 - key: readability-identifier-naming.MethodCase
25 value: camelBack
26 - key: readability-identifier-naming.ClassMethodCase
27 value: camelBack
28 - key: readability-identifier-naming.FunctionCase
29 value: lower_case
30 - key: readability-identifier-naming.MemberCase
31 value: camelBack
32 - key: readability-identifier-naming.PrivateMemberCase
33 value: camelBack
34 - key: readability-identifier-naming.PrivateMemberPrefix
35 value: _
36 - key: readability-identifier-naming.ProtectedMemberCase
37 value: camelBack
38 - key: readability-identifier-naming.ProtectedMemberPrefix
39 value: _
40...