forked from github/codeql-coding-standards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeclarations1.json
More file actions
26 lines (26 loc) · 907 Bytes
/
Declarations1.json
File metadata and controls
26 lines (26 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"MISRA-C++-2023": {
"RULE-13-3-3": {
"properties": {
"enforcement": "decidable",
"obligation": "required"
},
"queries": [
{
"description": "Parameters in some number of declarations or overrides of a function that do not have identical names can lead to developer confusion.",
"kind": "problem",
"name": "The parameters in all declarations or overrides of a function shall either be unnamed or have identical names",
"precision": "very-high",
"severity": "error",
"short_name": "DeclarationsOfAFunctionSameParameterName",
"tags": [
"maintainability",
"readability",
"scope/system"
]
}
],
"title": "The parameters in all declarations or overrides of a function shall either be unnamed or have identical names"
}
}
}