blob: 957d09a91fae4366776568e8a7caecba3b90eba8 [file] [log] [blame]
Alexander Hansen5ae48152023-09-28 20:05:11 +02001Checks: '
2 -*,
Lei YU90629cc2025-02-06 06:04:33 +00003 bugprone-unchecked-optional-access,
Alexander Hansen5ae48152023-09-28 20:05:11 +02004 readability-function-size,
5 readability-function-cognitive-complexity
6'
7CheckOptions:
8 - { key: readability-function-size.LineThreshold, value: 60 } # [1]
9 - { key: readability-function-size.ParameterThreshold, value: 6 } # [2]
10 - { key: readability-function-cognitive-complexity.Threshold, value: 25 } # [3]
11
Patrick Williamse6185cf2025-02-07 11:06:53 -050012WarningsAsErrors: '*'
Alexander Hansen278f19d2025-03-13 15:44:57 +010013HeaderFilterRegex: '(?!^subprojects).*'
Patrick Williamse6185cf2025-02-07 11:06:53 -050014
Alexander Hansen5ae48152023-09-28 20:05:11 +020015# [1] https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f3-keep-functions-short-and-simple
16# [2] https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f2-a-function-should-perform-a-single-logical-operation
17# [3] https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f3-keep-functions-short-and-simple
18# However cognitive complexity != cyclomatic complexity. Therefore using the clang-tidy default value,
19# as cyclomatic complexity seems to not be implemented in clang-tidy.
20
21# [1],[2],[3] do not have to be enforced or applied project-wide yet.