Patrick Williams | 08ffcb8 | 2025-05-30 10:26:40 -0400 | [diff] [blame^] | 1 | Checks: '-*, |
Pavithra Barithaya | 9e120bf | 2025-05-14 12:27:41 +0530 | [diff] [blame] | 2 | bugprone-unchecked-optional-access, |
| 3 | modernize-use-nullptr, |
Patrick Williams | 08ffcb8 | 2025-05-30 10:26:40 -0400 | [diff] [blame^] | 4 | readability-function-cognitive-complexity, |
| 5 | readability-function-size |
| 6 | ' |
| 7 | |
Pavithra Barithaya | 9e120bf | 2025-05-14 12:27:41 +0530 | [diff] [blame] | 8 | CheckOptions: |
Patrick Williams | 08ffcb8 | 2025-05-30 10:26:40 -0400 | [diff] [blame^] | 9 | - key: readability-function-cognitive-complexity.Threshold |
| 10 | value: 25 |
| 11 | - key: readability-function-size.LineThreshold |
| 12 | value: 60 |
| 13 | - key: readability-function-size.ParameterThreshold |
| 14 | value: 6 |
| 15 | |
| 16 | HeaderFilterRegex: (?!^subprojects).* |
Pavithra Barithaya | 9e120bf | 2025-05-14 12:27:41 +0530 | [diff] [blame] | 17 | |
| 18 | WarningsAsErrors: '*' |