| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | Checks: '-*,readability-identifier-naming'
CheckOptions:
	- { key: readability-identifier-naming.EnumCase, value: lower_case }
	- { key: readability-identifier-naming.GlobalFunctionCase, value: lower_case }
	- { key: readability-identifier-naming.ClassCase, value: CamelCase }
	- { key: readability-identifier-naming.ClassMethodCase, value: lower_case }
	- { key: readability-identifier-naming.ClassMethodPrefix, value: '' }
	- { key: readability-identifier-naming.ClassMemberCase, value: lower_case }
	- { key: readability-identifier-naming.ClassMemberPrefix, value: '' }
	- { key: readability-identifier-naming.GlobalConstantCase, value: UPPER_CASE }
	- { key: readability-identifier-naming.GlobalConstantIgnoredRegexp, value: _.* }
	- { key: readability-identifier-naming.GlobalVariableCase, value: lower_case }
	- { key: readability-identifier-naming.GlobalVariableIgnoredRegexp, value: _.* }
	- { key: readability-identifier-naming.MacroDefinitionCase, value: UPPER_CASE }
	- { key: readability-identifier-naming.MacroDefinitionIgnoredRegexp, value: _.* }
	- { key: readability-identifier-naming.StructCase, value: lower_case }
# vim: ft=yaml
 |