mirror of
https://github.com/drewcassidy/quicktex.git
synced 2024-09-13 06:37:34 +00:00
21 lines
692 B
YAML
21 lines
692 B
YAML
---
|
|
FormatStyle: LLVM
|
|
Checks: 'clang-diagnostic-*,clang-analyzer-*,readability-*'
|
|
|
|
CheckOptions:
|
|
- key: readability-identifier-naming.AbstractClassCase
|
|
value: 'CamelCase'
|
|
- key: readability-identifier-naming.ClassCase
|
|
value: 'CamelCase'
|
|
- key: readability-identifier-naming.EnumCase
|
|
value: 'CamelCase'
|
|
- key: readability-identifier-naming.StructCase
|
|
value: 'CamelCase'
|
|
- key: readability-identifier-naming.TypedefCase
|
|
value: 'CamelCase'
|
|
- key: readability-identifier-naming.MemberCase
|
|
value: 'CamelCase'
|
|
- key: readability-identifier-naming.FunctionCase
|
|
value: 'camelBack'
|
|
- key: readability-identifier-naming.ClassMethodCase
|
|
value: 'camelBack' |