b9fdaf8a94
* Create clang-tidy.sh * Add clang-tidy to circle.yml * Fixed some naming violations Fixes #4164
18 lines
723 B
YAML
18 lines
723 B
YAML
Checks: '-*,readability-identifier-naming'
|
|
CheckOptions:
|
|
- key: readability-identifier-naming.PrivateMemberPrefix
|
|
value: 'm_'
|
|
- key: readability-identifier-naming.ClassConstantCase
|
|
value: aNy_CasE
|
|
# an empty *Prefix needs a *Case to work
|
|
- key: readability-identifier-naming.ClassConstantPrefix
|
|
value: ''
|
|
#- key: readability-identifier-naming.PrivateMemberCase
|
|
# value: CamelCase
|
|
#- key: readability-identifier-naming.FunctionCase
|
|
# value: CamelCase
|
|
#- key: readability-identifier-naming.EnumCase
|
|
# value: camelBack
|
|
WarningsAsErrors: '*'
|
|
HeaderFilterRegex: '/cuberite/src/\.?[^\.]'
|