Skip to content

Commit 479a9c2

Browse files
committed
Updating clang-tidy config
1 parent 589b744 commit 479a9c2

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.clang-tidy

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,14 @@ CheckOptions:
4949
value: 4
5050
- key: readability-identifier-length.MinimumParameterNameLength
5151
value: 4
52+
- key: readability-identifier-length.IgnoredParameterNames
53+
value: ""
5254
- key: readability-identifier-length.MinimumLoopCounterNameLength
5355
value: 4
5456
- key: readability-identifier-length.IgnoredLoopCounterNames
55-
value: "^([ijk][ijk]?|it[0-9]?|_)$"
57+
value: "^([ijk]{1,2}|it[0-9]?|_)$"
58+
- key: readability-identifier-length.MinimumExceptionNameLength
59+
value: 4
60+
- key: readability-identifier-length.IgnoredExceptionVariableNames
61+
value: ""
5662
FormatStyle: "file"

0 commit comments

Comments
 (0)