forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.clang-tidy
41 lines (41 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
# NOTE: there must be no spaces before the '-', so put the comma first.
Checks: '
*
,modernize-*
,clang-analyzer-*
,-clang-diagnostic-*
,-hicpp-no-array-decay
,-fuchsia-*
,-google-readability-namespace-comments
,-llvm-namespace-comment
,-google-readability-todo
,-cppcoreguidelines-pro-bounds-array-to-pointer-decay
,-cert-err60-cpp
,-llvm-header-guard
,-cppcoreguidelines-special-member-functions
,-misc-unused-parameters
,-hicpp-braces-around-statements
,-hicpp-special-member-functions
,-readability-braces-around-statements
,-modernize-use-default-member-init
,-google-runtime-references
,-cppcoreguidelines-pro-type-vararg
,-google-readability-braces-around-statements
,-google-build-using-namespace
,-hicpp-vararg
,-hicpp-explicit-conversions
,-performance-unnecessary-value-param
,-google-runtime-references
,-cppcoreguidelines-pro-type-static-cast-downcast
,-cppcoreguidelines-pro-bounds-constant-array-index
,-cert-err58-cpp
,-modernize-make-unique
,-cppcoreguidelines-owning-memory
,-readability-named-parameter
'
WarningsAsErrors: ''
HeaderFilterRegex: 'torch/csrc/'
AnalyzeTemporaryDtors: false
CheckOptions:
...