-
Notifications
You must be signed in to change notification settings - Fork 18
/
.clang-tidy
26 lines (26 loc) · 1.17 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
---
Checks: -*,
readability-*,
modernize-*, -modernize-use-using,
cppcoreguidelines-*, -cppcoreguidelines-pro-*, -cppcoreguidelines-special-member-functions, -cppcoreguidelines-owning-memory, -cppcoreguidelines-avoid-goto,
performance-*, -performance-unnecessary-value-param,
misc-*, -misc-misplaced-const,
bugprone-*, -bugprone-suspicious-missing-comma, -bugprone-sizeof-expression,
google-*, -google-runtime-references, -google-readability-todo
WarningsAsErrors: '*'
HeaderFilterRegex: 'compute_samples/'
AnalyzeTemporaryDtors: false
FormatStyle: file
CheckOptions:
- key: readability-identifier-naming.ClassMemberCase
value: lower_case
- key: readability-identifier-naming.ClassMemberSuffix
value: '_'
- key: readability-identifier-naming.VariableCase
value: lower_case
- key: readability-identifier-naming.FunctionCase
value: lower_case
- key: readability-identifier-naming.EnumCase
value: lower_case
- key: readability-identifier-naming.NamespaceCase
value: lower_case