mirror of
https://github.com/jellyfin/jellyfin-media-player.git
synced 2025-02-17 04:17:44 +00:00
22 lines
1.2 KiB
YAML
22 lines
1.2 KiB
YAML
# Don't use the C++ new,delete check since it doesn't work with Qt.
|
|
# Enable a bunch of modernization checks
|
|
Checks: '-clang-analyzer-cplusplus.NewDeleteLeaks,misc-forward-declaration-namespace,modernize-use-auto,modernize-use-nullptr,modernize-redudant-void-arg,readability-inconsistent-declaration-parameter-name,readability-simplify-boolean-expr,readability-container-size-empty,performance-for-range-copy,readability-identifier-naming,modernize-use-override,google-explicit-constructor'
|
|
CheckOptions:
|
|
- key: readability-identifier-naming.ClassCase
|
|
value: CamelCase
|
|
- key: readability-identifier-naming.EnumCase
|
|
value: CamelCase
|
|
- key: readability-identifier-naming.FunctionCase
|
|
value: lowerCase
|
|
- key: readability-identifier-naming.GlobalFunction
|
|
value: CamelCase
|
|
- key: readability-identifier-naming.GlobalVarableCase
|
|
value: camelBack
|
|
- key: readability-identifier-naming.GlobalVariablePrefix
|
|
value: g_
|
|
- key: readability-identifier-naming.VariableCase
|
|
value: camelBack
|
|
- key: readability-identifier-naming.MemberPrefix
|
|
value: m_
|
|
- key: readability-identifier-naming.MemberCase
|
|
value: camelBack |