llvm-project
60 строк · 2.2 Кб
1InheritParentConfig: true2Checks: >3-misc-const-correctness,
4bugprone-argument-comment,
5bugprone-assert-side-effect,
6bugprone-branch-clone,
7bugprone-copy-constructor-init,
8bugprone-dangling-handle,
9bugprone-dynamic-static-initializers,
10bugprone-macro-parentheses,
11bugprone-macro-repeated-side-effects,
12bugprone-misplaced-widening-cast,
13bugprone-move-forwarding-reference,
14bugprone-multiple-statement-macro,
15bugprone-suspicious-semicolon,
16bugprone-swapped-arguments,
17bugprone-terminating-continue,
18bugprone-unused-raii,
19bugprone-unused-return-value,
20misc-redundant-expression,
21misc-static-assert,
22misc-unused-using-decls,
23modernize-use-bool-literals,
24modernize-loop-convert,
25modernize-make-unique,
26modernize-raw-string-literal,
27modernize-use-equals-default,
28modernize-use-default-member-init,
29modernize-use-emplace,
30modernize-use-nullptr,
31modernize-use-override,
32modernize-use-using,
33performance-for-range-copy,
34performance-implicit-conversion-in-loop,
35performance-inefficient-algorithm,
36performance-inefficient-vector-operation,
37performance-move-const-arg,
38performance-no-automatic-move,
39performance-trivially-destructible,
40performance-unnecessary-copy-initialization,
41performance-unnecessary-value-param,
42readability-avoid-const-params-in-decls,
43readability-const-return-type,
44readability-container-size-empty,
45readability-inconsistent-declaration-parameter-name,
46readability-misleading-indentation,
47readability-redundant-control-flow,
48readability-redundant-smartptr-get,
49readability-simplify-boolean-expr,
50readability-simplify-subscript-expr,
51readability-use-anyofallof
52
53
54CheckOptions:55- key: readability-identifier-naming.MemberCase56value: camelBack57- key: readability-identifier-naming.ParameterCase58value: camelBack59- key: readability-identifier-naming.VariableCase60value: camelBack61