blob: 67cd167fc464caa1fbbf555c82afd3640ebc77ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# refer to https://clang.llvm.org/extra/clang-tidy/checks/list.html
Checks: '-*, readability-identifier-naming, clang-analyzer-core.*,'
WarningsAsErrors: '-*'
HeaderFilterRegex: ''
FormatStyle: file
InheritParentConfig: false
AnalyzeTemporaryDtors: false
User: wamr
CheckOptions:
- key: readability-identifier-naming.VariableCase
value: lower_case
- key: readability-identifier-naming.ParameterCase
value: lower_case
- key: readability-identifier-naming.MacroDefinitionCase
value: UPPER_CASE
|