comparison clang/.clang-tidy @ 223:5f17cb93ff66 llvm-original

LLVM13 (2021/7/18)
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 18 Jul 2021 22:43:00 +0900
parents 79ff65ed7e25
children
comparison
equal deleted inserted replaced
222:81f6424ef0e3 223:5f17cb93ff66
1 Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,-readability-identifier-naming,-misc-no-recursion'
2 # Note that the readability-identifier-naming check is disabled, there are too 1 # Note that the readability-identifier-naming check is disabled, there are too
3 # many violations in the codebase and they create too much noise in clang-tidy 2 # many violations in the codebase and they create too much noise in clang-tidy
4 # results. 3 # results.
5 # Naming settings are kept for documentation purposes and allowing to run the 4 Checks: '-readability-identifier-naming'
6 # check if the users would override this file, e.g. via a command-line arg. 5 InheritParentConfig: true
7 CheckOptions:
8 - key: readability-identifier-naming.ClassCase
9 value: CamelCase
10 - key: readability-identifier-naming.EnumCase
11 value: CamelCase
12 - key: readability-identifier-naming.FunctionCase
13 value: camelBack
14 - key: readability-identifier-naming.MemberCase
15 value: CamelCase
16 - key: readability-identifier-naming.ParameterCase
17 value: CamelCase
18 - key: readability-identifier-naming.UnionCase
19 value: CamelCase
20 - key: readability-identifier-naming.VariableCase
21 value: CamelCase
22 - key: readability-identifier-naming.IgnoreMainLikeFunctions
23 value: 1
24