|
1 | 1 | --- |
2 | | -Checks: '*,-google-default-arguments,-fuchsia-*,-zircon-*,-abseil-*,-llvmlibc-*' |
3 | | -WarningsAsErrors: '' |
4 | | -HeaderFilterRegex: '' |
5 | | -AnalyzeTemporaryDtors: false |
6 | | -FormatStyle: file |
| 2 | +Checks: > |
| 3 | + -*, |
| 4 | + readability-misleading-indentation, |
| 5 | + readability-redundant-declaration, |
| 6 | + readability-redundant-member-init, |
| 7 | + readability-use-anyofallof, |
| 8 | + readability-identifier-naming, |
| 9 | + readability-braces-around-statements, |
| 10 | + readability-function-cognitive-complexity, |
| 11 | + readability-magic-numbers, |
| 12 | + readability-else-after-return, |
| 13 | + readability-avoid-const-params-in-decls, |
| 14 | + readability-container-size-empty, |
| 15 | + readability-redundant-string-cstr, |
| 16 | + readability-redundant-control-flow, |
| 17 | + readability-simplify-boolean-expr, |
| 18 | + readability-uppercase-literal-suffix, |
| 19 | + readability-static-accessed-through-instance, |
| 20 | + readability-named-parameter, |
| 21 | + modernize-use-auto, |
| 22 | + modernize-use-nullptr, |
| 23 | + modernize-use-override, |
| 24 | + modernize-deprecated-headers, |
| 25 | + modernize-use-using, |
| 26 | + modernize-avoid-c-arrays, |
| 27 | + modernize-make-unique, |
| 28 | + modernize-make-shared, |
| 29 | + cppcoreguidelines-avoid-magic-numbers, |
| 30 | + cppcoreguidelines-pro-bounds-constant-array-index, |
| 31 | + cppcoreguidelines-pro-type-static-cast-downcast, |
| 32 | + cppcoreguidelines-pro-type-reinterpret-cast, |
| 33 | + cppcoreguidelines-pro-type-cstyle-cast, |
| 34 | + cppcoreguidelines-pro-type-member-init, |
| 35 | + cppcoreguidelines-pro-bounds-pointer-arithmetic, |
| 36 | + cppcoreguidelines-pro-type-vararg, |
| 37 | + cppcoreguidelines-no-malloc, |
| 38 | + cppcoreguidelines-special-member-functions, |
| 39 | + cppcoreguidelines-avoid-non-const-global-variables, |
| 40 | + cppcoreguidelines-init-variables, |
| 41 | + hicpp-no-array-decay, |
| 42 | + hicpp-signed-bitwise, |
| 43 | + hicpp-uppercase-literal-suffix, |
| 44 | + hicpp-use-auto, |
| 45 | + hicpp-use-nullptr, |
| 46 | + hicpp-use-override, |
| 47 | + hicpp-deprecated-headers, |
| 48 | + hicpp-explicit-conversions, |
| 49 | + hicpp-multiway-paths-covered, |
| 50 | + hicpp-no-malloc, |
| 51 | + hicpp-special-member-functions, |
| 52 | + hicpp-avoid-goto, |
| 53 | + performance-for-range-copy, |
| 54 | + performance-implicit-conversion-in-loop, |
| 55 | + performance-inefficient-vector-operation, |
| 56 | + performance-unnecessary-value-param |
| 57 | +WarningsAsErrors: "*" |
| 58 | +HeaderFilterRegex: ".*" |
| 59 | +AnalyzeTemporaryDtors: true |
| 60 | +FormatStyle: file |
7 | 61 | CheckOptions: |
8 | | - - key: cert-dcl16-c.NewSuffixes |
9 | | - value: 'L;LL;LU;LLU' |
10 | | - - key: cppcoreguidelines-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic |
11 | | - value: '1' |
12 | | - - key: google-readability-braces-around-statements.ShortStatementLines |
13 | | - value: '1' |
14 | | - - key: google-readability-function-size.StatementThreshold |
15 | | - value: '800' |
16 | | - - key: google-readability-namespace-comments.ShortNamespaceLines |
17 | | - value: '10' |
18 | | - - key: google-readability-namespace-comments.SpacesBeforeComments |
19 | | - value: '2' |
20 | | - - key: modernize-loop-convert.MaxCopySize |
21 | | - value: '16' |
22 | | - - key: modernize-loop-convert.MinConfidence |
23 | | - value: reasonable |
24 | | - - key: modernize-loop-convert.NamingStyle |
25 | | - value: CamelCase |
26 | | - - key: modernize-pass-by-value.IncludeStyle |
27 | | - value: llvm |
28 | | - - key: modernize-replace-auto-ptr.IncludeStyle |
29 | | - value: llvm |
30 | | - - key: modernize-use-nullptr.NullMacros |
31 | | - value: 'NULL' |
32 | | - - key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic |
33 | | - value: '1' |
34 | | - - key: modernize-use-default-member-init.UseAssignment |
35 | | - value: '1' |
36 | | -... |
37 | | - |
| 62 | + - key: readability-identifier-naming.ClassCase |
| 63 | + value: CamelCase |
| 64 | + - key: readability-identifier-naming.MethodCase |
| 65 | + value: camelBack |
| 66 | + - key: readability-identifier-naming.VariableCase |
| 67 | + value: camelBack |
| 68 | + - key: readability-identifier-naming.ConstantCase |
| 69 | + value: UPPER_CASE |
| 70 | + - key: readability-identifier-naming.MacroDefinitionCase |
| 71 | + value: UPPER_CASE |
| 72 | + - key: readability-identifier-naming.EnumCase |
| 73 | + value: CamelCase |
| 74 | + - key: readability-identifier-naming.EnumConstantCase |
| 75 | + value: CamelCase |
| 76 | + - key: readability-braces-around-statements.ShortStatementLines |
| 77 | + value: 1 |
0 commit comments