File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Apply to ALL headers (empty = no restriction)
2+ HeaderFilterRegex : ' .*'
3+
4+ # Treat warnings as errors (optional but recommended for CI)
5+ # WarningsAsErrors: '*'
6+ WarningsAsErrors : ' '
7+
8+ Checks : >
9+ -*,
10+ clang-diagnostic-*,
11+ modernize-*,
12+ -modernize-use-trailing-return-type,
13+ -modernize-use-auto,
14+ cppcoreguidelines-*,
15+ -cppcoreguidelines-owning-memory,
16+ -cppcoreguidelines-pro-type-vararg,
17+ -cppcoreguidelines-avoid-magic-numbers,
18+ bugprone-*,
19+ performance-*,
20+ readability-*,
21+ -readability-magic-numbers,
22+ -readability-identifier-length,
23+ misc-*,
24+ -misc-unused-parameters
25+
26+ CheckOptions :
27+ - key : readability-identifier-naming.NamespaceCase
28+ value : lower_case
29+
30+ - key : readability-identifier-naming.ClassCase
31+ value : CamelCase
32+
33+ - key : readability-identifier-naming.StructCase
34+ value : CamelCase
35+
36+ - key : readability-identifier-naming.FunctionCase
37+ value : lower_case
38+
39+ - key : readability-identifier-naming.VariableCase
40+ value : lower_case
41+
42+ - key : readability-identifier-naming.MemberCase
43+ value : lower_case_
44+
45+ - key : modernize-use-nullptr.NullMacros
46+ value : ' NULL'
You can’t perform that action at this time.
0 commit comments