Mercurial > hg > CbC > CbC_llvm
comparison lld/.clang-tidy @ 173:0572611fdcc8 llvm10 llvm12
reorgnization done
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 May 2020 11:55:54 +0900 |
parents | |
children | 5f17cb93ff66 |
comparison
equal
deleted
inserted
replaced
172:9fbae9c8bf63 | 173:0572611fdcc8 |
---|---|
1 # Almost identical to the top-level .clang-tidy, except that {Member,Parameter,Variable}Case use camelBack. | |
2 Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,readability-identifier-naming' | |
3 CheckOptions: | |
4 - key: readability-identifier-naming.ClassCase | |
5 value: CamelCase | |
6 - key: readability-identifier-naming.EnumCase | |
7 value: CamelCase | |
8 - key: readability-identifier-naming.FunctionCase | |
9 value: camelBack | |
10 - key: readability-identifier-naming.MemberCase | |
11 value: camelBack | |
12 - key: readability-identifier-naming.ParameterCase | |
13 value: camelBack | |
14 - key: readability-identifier-naming.UnionCase | |
15 value: CamelCase | |
16 - key: readability-identifier-naming.VariableCase | |
17 value: camelBack | |
18 - key: readability-identifier-naming.IgnoreMainLikeFunctions | |
19 value: 1 |