1 1.1 joerg Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,-readability-identifier-naming' 2 1.1 joerg # Note that the readability-identifier-naming check is disabled, there are too 3 1.1 joerg # many violations in the codebase and they create too much noise in clang-tidy 4 1.1 joerg # results. 5 1.1 joerg # Naming settings are kept for documentation purposes and allowing to run the 6 1.1 joerg # check if the users would override this file, e.g. via a command-line arg. 7 1.1 joerg CheckOptions: 8 1.1 joerg - key: readability-identifier-naming.ClassCase 9 1.1 joerg value: CamelCase 10 1.1 joerg - key: readability-identifier-naming.EnumCase 11 1.1 joerg value: CamelCase 12 1.1 joerg - key: readability-identifier-naming.FunctionCase 13 1.1 joerg value: camelBack 14 1.1 joerg - key: readability-identifier-naming.MemberCase 15 1.1 joerg value: CamelCase 16 1.1 joerg - key: readability-identifier-naming.ParameterCase 17 1.1 joerg value: CamelCase 18 1.1 joerg - key: readability-identifier-naming.UnionCase 19 1.1 joerg value: CamelCase 20 1.1 joerg - key: readability-identifier-naming.VariableCase 21 1.1 joerg value: CamelCase 22 1.1.1.2 joerg - key: readability-identifier-naming.IgnoreMainLikeFunctions 23 1.1.1.2 joerg value: 1 24 1.1 joerg 25