Skip to content

Commit ce1c02a

Browse files
committed
Update @tags metadata property
1 parent d9a3371 commit ce1c02a

File tree

6 files changed

+9
-3
lines changed

6 files changed

+9
-3
lines changed

cpp/misra/src/rules/RULE-10-2-2/UnscopedEnumerationsShouldNotBeDeclared.ql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* @tags external/misra/id/rule-10-2-2
1111
* scope/single-translation-unit
1212
* correctness
13+
* maintainability
1314
* external/misra/enforcement/decidable
1415
* external/misra/obligation/advisory
1516
*/

cpp/misra/src/rules/RULE-10-2-3/UnscopedEnumWithoutFixedUnderlyingTypeUsed.ql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* @tags external/misra/id/rule-10-2-3
1010
* scope/single-translation-unit
1111
* correctness
12+
* readability
1213
* external/misra/enforcement/decidable
1314
* external/misra/obligation/required
1415
*/

cpp/misra/src/rules/RULE-10-3-1/UnnamedNamespacesInHeaderFiles.ql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* @tags external/misra/id/rule-10-3-1
1010
* scope/single-translation-unit
1111
* correctness
12+
* maintainability
1213
* external/misra/enforcement/decidable
1314
* external/misra/obligation/advisory
1415
*/

rule_packages/cpp/Banned2.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"short_name": "UnscopedEnumerationsShouldNotBeDeclared",
1616
"tags": [
1717
"scope/single-translation-unit",
18-
"correctness"
18+
"correctness",
19+
"maintainability"
1920
]
2021
}
2122
],

rule_packages/cpp/Banned3.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"short_name": "UnscopedEnumWithoutFixedUnderlyingTypeUsed",
1616
"tags": [
1717
"scope/single-translation-unit",
18-
"correctness"
18+
"correctness",
19+
"readability"
1920
]
2021
}
2122
],

rule_packages/cpp/Banned4.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"short_name": "UnnamedNamespacesInHeaderFiles",
1616
"tags": [
1717
"scope/single-translation-unit",
18-
"correctness"
18+
"correctness",
19+
"maintainability"
1920
]
2021
}
2122
],

0 commit comments

Comments
 (0)