-
Notifications
You must be signed in to change notification settings - Fork 1
/
.clang-tidy
14 lines (13 loc) · 1.07 KB
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
---
Checks: 'clang-diagnostic-*,clang-analyzer-*,-*,bugprone-*,clang-*,cert-*,cppcoreguidelines-*,-cppcoreguidelines-pro-type-vararg,-cppcoreguidelines-pro-bounds-array-to-pointer-decay,google-explicit-constructor,google-global-names-in-headers,google-readability-casting,llvm-*,-llvm-header-guard,-llvm-namespace-comment,misc-*,modernize-*,performance-*,-performance-unnecessary-value-param,readability-*,-cert-err58-cpp,-clang-analyzer-core.uninitialized.UndefReturn,-cppcoreguidelines-avoid-c-arrays,-cppcoreguidelines-avoid-magic-numbers,-cert-dcl16-c,-readability-uppercase-literal-suffix,-readability-magic-numbers,-modernize-use-trailing-return-type'
WarningsAsErrors: ''
AnalyzeTemporaryDtors: false
FormatStyle: file
CheckOptions:
- key: bugprone-dangling-handle.HandleClasses
value: 'std::basic_string_view;std::experimental::basic_string_view'
- key: llvm-namespace-comment.ShortNamespaceLines
value: '1'
- key: llvm-namespace-comment.SpacesBeforeComments
value: '1'
...