xref: /netbsd-src/external/apache2/llvm/dist/clang/.clang-tidy (revision e038c9c4676b0f19b1b7dd08a940c6ed64a6d5ae)
17330f729SjoergChecks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,-readability-identifier-naming'
27330f729Sjoerg# Note that the readability-identifier-naming check is disabled, there are too
37330f729Sjoerg# many violations in the codebase and they create too much noise in clang-tidy
47330f729Sjoerg# results.
57330f729Sjoerg# Naming settings are kept for documentation purposes and allowing to run the
67330f729Sjoerg# check if the users would override this file, e.g. via a command-line arg.
77330f729SjoergCheckOptions:
87330f729Sjoerg  - key:             readability-identifier-naming.ClassCase
97330f729Sjoerg    value:           CamelCase
107330f729Sjoerg  - key:             readability-identifier-naming.EnumCase
117330f729Sjoerg    value:           CamelCase
127330f729Sjoerg  - key:             readability-identifier-naming.FunctionCase
137330f729Sjoerg    value:           camelBack
147330f729Sjoerg  - key:             readability-identifier-naming.MemberCase
157330f729Sjoerg    value:           CamelCase
167330f729Sjoerg  - key:             readability-identifier-naming.ParameterCase
177330f729Sjoerg    value:           CamelCase
187330f729Sjoerg  - key:             readability-identifier-naming.UnionCase
197330f729Sjoerg    value:           CamelCase
207330f729Sjoerg  - key:             readability-identifier-naming.VariableCase
217330f729Sjoerg    value:           CamelCase
22*e038c9c4Sjoerg  - key:             readability-identifier-naming.IgnoreMainLikeFunctions
23*e038c9c4Sjoerg    value:           1
247330f729Sjoerg
25