forked from jstkdng/ueberzugpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
28 lines (28 loc) · 1.18 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
---
Checks: -*,
readability-*,
modernize-*,
portability-*,
performance-*,
concurrency-*,
cppcoreguidelines-*, -cppcoreguidelines-pro-*, -cppcoreguidelines-special-member-functions, -cppcoreguidelines-non-private-member-variables-in-classes, -cppcoreguidelines-owning-memory
misc-*, -misc-non-private-member-variables-in-classes,
bugprone-*, -bugprone-easily-swappable-parameters,
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