annotate clang/.clang-tidy @ 165:597b3f1c2c93

fix call createTailCallEliminationPass
author anatofuz
date Tue, 24 Mar 2020 15:30:52 +0900
parents 1d019706d866
children 2e18cbf3894f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,-readability-identifier-naming'
anatofuz
parents:
diff changeset
2 # Note that the readability-identifier-naming check is disabled, there are too
anatofuz
parents:
diff changeset
3 # many violations in the codebase and they create too much noise in clang-tidy
anatofuz
parents:
diff changeset
4 # results.
anatofuz
parents:
diff changeset
5 # Naming settings are kept for documentation purposes and allowing to run the
anatofuz
parents:
diff changeset
6 # check if the users would override this file, e.g. via a command-line arg.
anatofuz
parents:
diff changeset
7 CheckOptions:
anatofuz
parents:
diff changeset
8 - key: readability-identifier-naming.ClassCase
anatofuz
parents:
diff changeset
9 value: CamelCase
anatofuz
parents:
diff changeset
10 - key: readability-identifier-naming.EnumCase
anatofuz
parents:
diff changeset
11 value: CamelCase
anatofuz
parents:
diff changeset
12 - key: readability-identifier-naming.FunctionCase
anatofuz
parents:
diff changeset
13 value: camelBack
anatofuz
parents:
diff changeset
14 - key: readability-identifier-naming.MemberCase
anatofuz
parents:
diff changeset
15 value: CamelCase
anatofuz
parents:
diff changeset
16 - key: readability-identifier-naming.ParameterCase
anatofuz
parents:
diff changeset
17 value: CamelCase
anatofuz
parents:
diff changeset
18 - key: readability-identifier-naming.UnionCase
anatofuz
parents:
diff changeset
19 value: CamelCase
anatofuz
parents:
diff changeset
20 - key: readability-identifier-naming.VariableCase
anatofuz
parents:
diff changeset
21 value: CamelCase
anatofuz
parents:
diff changeset
22 - key: readability-identifier-naming.IgnoreMainLikeFunctions
anatofuz
parents:
diff changeset
23 value: 1
anatofuz
parents:
diff changeset
24