-
Notifications
You must be signed in to change notification settings - Fork 1
/
.clang-tidy
35 lines (32 loc) · 1.29 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
Checks: >-
bugprone-*,
-bugprone-easily-swappable-parameters,
cppcoreguidelines-slicing,
cppcoreguidelines-special-member-functions,
llvm-*,
misc-*,
-misc-no-recursion,
-misc-non-private-member-variables-in-classes,
-misc-unused-alias-decls,
modernize-*,
-modernize-concat-nested-namespaces,
-modernize-use-trailing-return-type,
-modernize-macro-to-enum,
performance-*,
readability-*,
-readability-avoid-const-params-in-decls,
-readability-magic-numbers,
-readability-identifier-length,
-readability-redundant-access-specifiers
CheckOptions:
- { key: modernize-use-nodiscard.ReplacementString, value: RVSTD_NODISCARD }
- { key: modernize-use-noexcept.ReplacementString, value: RVSTD_NOEXCEPT }
- { key: readability-identifier-naming.ClassCase, value: lower_case }
- { key: readability-identifier-naming.MethodCase, value: lower_case }
- { key: readability-identifier-naming.FunctionCase, value: lower_case }
- { key: readability-identifier-naming.ParameterCase, value: lower_case }
- { key: readability-identifier-naming.StructCase, value: lower_case }
- { key: readability-identifier-naming.VariableCase, value: lower_case }
- { key: readability-identifier-naming.AbstractClassPrefix, value: abstract }
WarningsAsErrors: "*"
HeaderFilterRegex: "rvstd/[^f].*"