forked from cvmfs/cvmfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
33 lines (33 loc) · 910 Bytes
/
.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
---
Checks: -*
,bugprone-*
,cert-*
,-cert-err34-c
,-cert-err58-cpp
,-cert-dcl50-cpp
,-cert-dcl03-c
,-cert-str34-c
,clang-analyzer-*
,google-*
,-google-readability-avoid-underscore-in-googletest-name
,misc-*
,-misc-static-assert
,-misc-no-recursion
,-misc-non-private-member-variables-in-classes
,performance-*
,-performance-inefficient-string-concatenation
,portability-*
WarningsAsErrors: '*'
HeaderFilterRegex: '/cvmfs/.*\.h$'
CheckOptions:
- key: google-readability-braces-around-statements.ShortStatementLines
value: '2'
- key: google-readability-function-size.StatementThreshold
value: '800'
- key: google-readability-namespace-comments.ShortNamespaceLines
value: '10'
- key: google-readability-namespace-comments.SpacesBeforeComments
value: '2'
- key: bugprone-signed-char-misuse.CharTypdefsToIgnore
value: 'int8_t'
...