Skip to content

Commit 22cdc1e

Browse files
authored
Merge branch 'AliceO2Group:master' into master
2 parents 94cf3c7 + 5a1aa28 commit 22cdc1e

File tree

356 files changed

+19376
-13252
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

356 files changed

+19376
-13252
lines changed

.clang-tidy

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
11
CheckOptions:
2-
- key: CheckPathRegex
3-
value: '.*/O2/.*'
2+
- { key: CheckPathRegex, value: ".*/O2/.*" }
3+
# Naming conventions
4+
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
5+
- { key: readability-identifier-naming.ClassMemberPrefix, value: m }
6+
- { key: readability-identifier-naming.ConceptCase, value: CamelCase }
7+
- { key: readability-identifier-naming.ConstexprVariableCase, value: CamelCase }
8+
- { key: readability-identifier-naming.ConstexprVariableIgnoredRegexp, value: "^k[A-Z].*$" } # Allow "k" prefix.
9+
- { key: readability-identifier-naming.EnumCase, value: CamelCase }
10+
- { key: readability-identifier-naming.EnumConstantCase, value: CamelCase }
11+
- { key: readability-identifier-naming.EnumConstantIgnoredRegexp, value: "^k[A-Z].*$" } # Allow "k" prefix.
12+
- { key: readability-identifier-naming.FunctionCase, value: camelBack }
13+
- { key: readability-identifier-naming.MacroDefinitionCase, value: UPPER_CASE }
14+
- { key: readability-identifier-naming.MacroDefinitionIgnoredRegexp, value: "^[A-Z]+(_[A-Z]+)*_$" } # Allow the trailing underscore in header guards.
15+
- { key: readability-identifier-naming.MemberCase, value: camelBack }
16+
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
17+
- { key: readability-identifier-naming.ParameterCase, value: camelBack }
18+
- { key: readability-identifier-naming.StructCase, value: CamelCase }
19+
- { key: readability-identifier-naming.TemplateParameterCase, value: CamelCase }
20+
- { key: readability-identifier-naming.TypeAliasCase, value: CamelCase }
21+
- { key: readability-identifier-naming.TypedefCase, value: CamelCase }
22+
- { key: readability-identifier-naming.TypeTemplateParameterCase, value: CamelCase }
23+
- { key: readability-identifier-naming.VariableCase, value: camelBack }

0 commit comments

Comments
 (0)