-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
77 lines (72 loc) · 4.09 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#=================================================================================================
# GRAPE
#=================================================================================================
# This file encodes language usage rules and some style rules
#
# Checks for safe usage of language features come from
# - CERT C++ coding standard
# - Google coding standard
# - CPPCoreGuidelines
# - High Integrity C++ coding standard
#
# Style rules:
# - The linter prompts the developer to use Modern C++ features with `modernize-*` checks
# - Style rules comes from ROS coding style (see corresponding .clang-format file. Identifier naming conventions are
# encoded in this file with `readability-*` rules
#
# Additionally, checks are turned on to catch
# - Use of language features that may be bug-prone
# - Use of language features that may cause performance issues
# Enable rule sets. Some checks are turned off because they are flagged by multiple rule-sets
Checks: '-*,
bugprone-*,
-bugprone-easily-swappable-parameters,
cert-*,
concurrency-*,
cppcoreguidelines-*,
clang-analyzer-*,
google-*,
hicpp-*,
-hicpp-avoid-c-arrays, # duplicates cppcoreguidelines-avoid-c-arrays,
-hicpp-no-array-decay, # duplicates cppcoreguidelines-pro-bounds-array-to-pointer-decay,
-hicpp-special-member-functions, # duplicates cppcoreguidelines-special-member-functions,
-hicpp-vararg, # duplicates cppcoreguidelines-pro-type-vararg,
misc-*,
-misc-include-cleaner,
modernize-*,
-modernize-avoid-c-arrays, # duplicates cppcoreguidelines-avoid-c-arrays,
performance-*,
-performance-move-const-arg, # duplicates hicpp-move-const-arg,
readability-*,
-readability-magic-numbers, # duplicates cppcoreguidelines-avoid-magic-numbers
'
# Upgrade warnings to errors
# WarningsAsErrors: '*'
# Check headers from `modules` only.
# Autogenerated headers for Qt apps are placed in build directory and therefore will be ignored.
HeaderFilterRegex: '/grape/modules/'
CheckOptions:
- { key: readability-identifier-naming.ConstexprVariableCase, value: UPPER_CASE }
- { key: readability-identifier-naming.GlobalConstantCase, value: UPPER_CASE }
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
- { key: readability-identifier-naming.StructCase, value: CamelCase }
- { key: readability-identifier-naming.PrivateMemberCase, value: lower_case }
- { key: readability-identifier-naming.PrivateMemberSuffix, value: _ }
- { key: readability-identifier-naming.ProtectedMemberCase, value: lower_case }
- { key: readability-identifier-naming.ProtectedMemberSuffix, value: _ }
- { key: readability-identifier-naming.FunctionCase, value: camelBack }
- { key: readability-identifier-naming.MemberCase, value: lower_case }
- { key: readability-identifier-naming.ClassMemberCase, value: lower_case }
- { key: readability-identifier-naming.ParameterCase, value: lower_case }
- { key: readability-identifier-naming.VariableCase, value: lower_case }
- { key: readability-identifier-naming.LocalVariableCase, value: lower_case }
- { key: readability-identifier-naming.EnumCase, value: CamelCase }
- { key: readability-identifier-naming.EnumConstantCase, value: CamelCase }
- { key: readability-identifier-length.MinimumVariableNameLength, value: 2 }
- { key: readability-identifier-length.MinimumParameterNameLength, value: 2 }
- { key: readability-function-cognitive-complexity.Threshold, value: 40 }
- { key: readability-function-cognitive-complexity.DescribeBasicIncrements, value: 0 }
- { key: readability-function-cognitive-complexity.IgnoreMacros, value: 1 }
- { key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic, value: 1}
...