blob: 5b425a7120238c9a9ae371db58f517f4731ff51c [file] [log] [blame]
Ilya Biryukovd226bc82019-02-01 11:20:131Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,-readability-identifier-naming'
2# 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
4# results.
5# Naming settings are kept for documentation purposes and allowing to run the
6# check if the users would override this file, e.g. via a command-line arg.
Alexander Kornienko6b8ad6a2016-04-13 08:59:497CheckOptions:
8 - key: readability-identifier-naming.ClassCase
9 value: CamelCase
10 - key: readability-identifier-naming.EnumCase
11 value: CamelCase
12 - key: readability-identifier-naming.FunctionCase
Ilya Biryukov3f0ea372018-03-20 14:39:1213 value: camelBack
14 - key: readability-identifier-naming.MemberCase
15 value: CamelCase
16 - key: readability-identifier-naming.ParameterCase
17 value: CamelCase
Alexander Kornienko6b8ad6a2016-04-13 08:59:4918 - key: readability-identifier-naming.UnionCase
19 value: CamelCase
20 - key: readability-identifier-naming.VariableCase
21 value: CamelCase
Nathan Jamesf99133e2020-01-31 16:49:1322 - key: readability-identifier-naming.IgnoreMainLikeFunctions
23 value: 1
Ilya Biryukov3f0ea372018-03-20 14:39:1224