summaryrefslogtreecommitdiffstats
path: root/.clang-tidy
blob: fe271607553b04fbf5bdc35d69b4ca09d542ee1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Checks: >-
  -*,
  readability-identifier-naming,
  readability-redundant-string-cstr,
  readability-redundant-string-init,
  readability-simplify-boolean-expr,
  performance-unnecessary-value-param,
  performance-unnecessary-copy-initialization,
  performance-for-range-copy,
  performance-implicit-conversion-in-loop,
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

- key: performance-unnecessary-value-param.AllowedTypes
  value: 'cEntityEffect;cNoise'
WarningsAsErrors: '*'
HeaderFilterRegex: '/cuberite/src/\.?[^\.]'
FormatStyle: 'file'