mirror of
https://github.com/Naios/continuable.git
synced 2025-12-06 16:56:44 +08:00
Some minor improvements to clang-tidy
This commit is contained in:
parent
1c2cb645ef
commit
1daa13b1d6
@ -1,4 +1,4 @@
|
||||
Checks: '-*,cppcoreguidelines-*,modernize--*,llvm-*,misc-*,-misc-unused-parameters,readability-identifier-naming'
|
||||
Checks: '-*,cppcoreguidelines-*,-cppcoreguidelines-pro-type-vararg,modernize--*,llvm-*,misc-*,readability-identifier-naming'
|
||||
CheckOptions:
|
||||
- key: readability-identifier-naming.ClassCase
|
||||
value: lower_case
|
||||
@ -14,5 +14,6 @@ CheckOptions:
|
||||
value: lower_case
|
||||
- key: readability-identifier-naming.VariableCase
|
||||
value: lower_case
|
||||
- key: readability-identifier-naming.VariableCase
|
||||
- key: readability-identifier-naming.Macro
|
||||
value: UPPER_CASE
|
||||
HeaderFilterRegex: 'include/.(hpp)$'
|
||||
|
||||
13
examples/example-ai/.clang-tidy
Normal file
13
examples/example-ai/.clang-tidy
Normal file
@ -0,0 +1,13 @@
|
||||
CheckOptions:
|
||||
- key: readability-identifier-naming.ClassCase
|
||||
value: CamelCase
|
||||
- key: readability-identifier-naming.EnumCase
|
||||
value: CamelCase
|
||||
- key: readability-identifier-naming.FunctionCase
|
||||
value: CamelCase
|
||||
- key: readability-identifier-naming.MemberCase
|
||||
value: CamelCase
|
||||
- key: readability-identifier-naming.UnionCase
|
||||
value: lower_case
|
||||
- key: readability-identifier-naming.VariableCase
|
||||
value: lower_case
|
||||
Loading…
x
Reference in New Issue
Block a user