forked from boost-ext/sml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
20 lines (19 loc) · 990 Bytes
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
Checks: 'clang-diagnostic-*,clang-analyzer-*,-clang-analyzer-alpha*,*,-clang-analyzer-core.UndefinedBinaryOperatorResult,-clang-analyzer-core.uninitialized.UndefReturn,-readability*,-misc-noexcept-move-constructor,-google-readability*,-google-build-using-namespace,-llvm-namespace-comment'
HeaderFilterRegex: msm
AnalyzeTemporaryDtors: false
User: git
CheckOptions:
- key: google-readability-braces-around-statements.ShortStatementLines
value: '1'
- 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: misc-assert-side-effect.AssertMacros
value: assert
- key: misc-assert-side-effect.CheckFunctionCalls
value: '0'
...