forked from eclipse-score/baselibs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.clang-tidy-minimal
More file actions
63 lines (55 loc) · 1.84 KB
/
.clang-tidy-minimal
File metadata and controls
63 lines (55 loc) · 1.84 KB
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
---
Checks: >
-*,
misc-confusable-identifiers,
misc-misleading-bidirectional,
misc-misleading-identifier,
misc-uniqueptr-reset-release,
misc-unused-alias-decls,
readability-avoid-nested-conditional-operator,
readability-const-return-type,
readability-delete-null-pointer,
readability-enum-initial-value,
readability-identifier-naming,
readability-misleading-indentation,
readability-redundant-string-init,
readability-reference-to-constructed-temporary,
readability-simplify-subscript-expr,
readability-string-compare,
readability-uniqueptr-delete-release,
ExtraArgsBefore:
- '-Wno-error=deprecated-declarations'
CheckOptions:
- key: misc-uniqueptr-reset-release.IncludeStyle
value: "llvm"
- key: readability-avoid-return-with-void-value.StrictMode
value: true
- key: readability-enum-initial-value.AllowExplicitZeroFirstInitialValue
value: true
- key: readability-enum-initial-value.AllowExplicitSequentialInitialValues
value: true
- key: readability-identifier-naming.MacroDefinitionCase
value: UPPER_CASE
- key: readability-identifier-naming.NamespaceCase
value: lower_case
- key: readability-simplify-subscript-expr.Types
value: >
::score::futurecpp::basic_string_view;
::score::futurecpp::pmr::basic_string;
::score::futurecpp::pmr::vector;
::score::futurecpp::span;
::score::safecpp::basic_zstring_view;
::std::array;
::std::basic_string_view;
::std::basic_string;
::std::vector;
::std::span
- key: readability-string-compare.StringLikeClasses
value: >
::score::futurecpp::basic_string_view;
::score::futurecpp::pmr::basic_string;
::score::safecpp::basic_zstring_view;
::std::basic_string_view;
::std::basic_string
- key: readability-uniqueptr-delete-release.PreferResetCall
value: true