You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
quicktex/.clang-tidy

21 lines
692 B
Plaintext

3 years ago
---
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'