Ilya Biryukov | d226bc8 | 2019-02-01 11:20:13 | [diff] [blame] | 1 | Checks: '-*,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 Kornienko | 6b8ad6a | 2016-04-13 08:59:49 | [diff] [blame] | 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 |
Ilya Biryukov | 3f0ea37 | 2018-03-20 14:39:12 | [diff] [blame] | 13 | value: camelBack |
| 14 | - key: readability-identifier-naming.MemberCase |
| 15 | value: CamelCase |
| 16 | - key: readability-identifier-naming.ParameterCase |
| 17 | value: CamelCase |
Alexander Kornienko | 6b8ad6a | 2016-04-13 08:59:49 | [diff] [blame] | 18 | - key: readability-identifier-naming.UnionCase |
| 19 | value: CamelCase |
| 20 | - key: readability-identifier-naming.VariableCase |
| 21 | value: CamelCase |
Nathan James | f99133e | 2020-01-31 16:49:13 | [diff] [blame] | 22 | - key: readability-identifier-naming.IgnoreMainLikeFunctions |
| 23 | value: 1 |
Ilya Biryukov | 3f0ea37 | 2018-03-20 14:39:12 | [diff] [blame] | 24 | |