2022-10-17 04:30:13 +08:00
|
|
|
Checks: >
|
|
|
|
-*,
|
|
|
|
clang-analyzer-*,
|
2023-01-07 07:19:57 +08:00
|
|
|
modernize-concat-nested-namespaces,
|
2023-01-08 05:19:13 +08:00
|
|
|
modernize-deprecated-headers,
|
2023-01-08 04:57:58 +08:00
|
|
|
modernize-loop-convert,
|
2023-01-12 15:27:56 +08:00
|
|
|
modernize-use-equals-default,
|
|
|
|
modernize-use-equals-delete,
|
2023-01-12 07:40:49 +08:00
|
|
|
modernize-use-nullptr,
|
2023-01-16 13:42:32 +08:00
|
|
|
portability-*,
|
2023-01-16 10:15:34 +08:00
|
|
|
readability-container-size-empty,
|
2022-10-18 08:44:31 +08:00
|
|
|
readability-identifier-naming,
|
2023-01-16 10:15:34 +08:00
|
|
|
readability-isolate-declaration,
|
2022-10-17 04:30:13 +08:00
|
|
|
-clang-analyzer-core.NonNullParamChecker,
|
|
|
|
-clang-analyzer-core.NullDereference,
|
|
|
|
-clang-analyzer-nullability.NullablePassedToNonnull,
|
|
|
|
-clang-analyzer-optin.cplusplus.VirtualCall,
|
|
|
|
-clang-analyzer-optin.osx.*,
|
|
|
|
-clang-analyzer-optin.portability.UnixAPI,
|
|
|
|
-clang-analyzer-osx.*,
|
|
|
|
-clang-analyzer-security.insecureAPI.rand,
|
|
|
|
-clang-analyzer-unix.Malloc,
|
2022-10-18 08:44:31 +08:00
|
|
|
CheckOptions:
|
|
|
|
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.FunctionCase, value: camelBack }
|
2022-10-24 06:53:36 +08:00
|
|
|
- { key: readability-identifier-naming.VariableCase, value: camelBack }
|
2022-10-24 05:17:57 +08:00
|
|
|
- { key: readability-identifier-naming.ParameterCase, value: camelBack }
|
2022-10-17 04:30:13 +08:00
|
|
|
HeaderFilterRegex: '.*'
|
|
|
|
WarningsAsErrors: '*'
|
2023-01-14 08:16:42 +08:00
|
|
|
UseColor: true
|