forked from deepmodeling/abacus-develop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
43 lines (42 loc) · 1.3 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
42
43
---
Checks: '
modernize-deprecated-headers,
modernize-redundant-void-arg,
modernize-use-bool-literals,
modernize-use-nullptr,
readability-avoid-return-with-void-value,
readability-braces-around-statements
# llvm-header-guard,
# bugprone-*,
# clang-analyzer-*,
# clang-diagnostic-*,
# cppcoreguidelines-avoid-non-const-global-variables,
# cppcoreguidelines-macro-usage,
# cppcoreguidelines-pro-type-member-init,
# fuchsia-multiple-inheritance,
# google-*,
# -google-runtime-references,
# misc-*,
# modernize-shrink-to-fit,
# modernize-use-starts-ends-with,
# mpi-*,
# performance-*,
# -performance-avoid-endl,
# readability-*,
# -readability-else-after-return,
# -readability-magic-numbers,
# -readability-isolate-declaration,
# -readability-braces-around-statements,
# -readability-implicit-bool-conversion,
# -google-readability-braces-around-statements,
# -misc-unused-parameters,
# -modernize-pass-by-value,
# -modernize-use-auto,
# -google-readability-casting,
# -readability-make-member-function-const,
# -cppcoreguidelines-avoid-non-const-global-variables,
# -readability-function-cognitive-complexity,
# -google-build-using-namespace,
# -bugprone-narrowing-conversions,
'
...