mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
39dd630f07
Addressed review comments Fixed Vulkan.cpp clang-tidy issues Used default-constructed objects instead of 0 More fun with OSX clang-tidy Try casting a nullptr to see if clang-tidy can live with it Revert "Try casting a nullptr to see if clang-tidy can live with it" This reverts commit e217a1d8be45e3fd27dc73e1c7043be921d3830b. Restored deleted line
23 lines
879 B
YAML
23 lines
879 B
YAML
Checks: >
|
|
-*,
|
|
clang-analyzer-*,
|
|
modernize-concat-nested-namespaces,
|
|
modernize-use-nullptr,
|
|
readability-identifier-naming,
|
|
-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,
|
|
CheckOptions:
|
|
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.FunctionCase, value: camelBack }
|
|
- { key: readability-identifier-naming.VariableCase, value: camelBack }
|
|
- { key: readability-identifier-naming.ParameterCase, value: camelBack }
|
|
HeaderFilterRegex: '.*'
|
|
WarningsAsErrors: '*'
|