forked from github/codeql-coding-standards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrigraph.json
More file actions
29 lines (29 loc) · 862 Bytes
/
Trigraph.json
File metadata and controls
29 lines (29 loc) · 862 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
27
28
29
{
"MISRA-C++-2023": {
"RULE-5-0-1": {
"properties": {
"enforcement": "decidable",
"obligation": "advisory"
},
"queries": [
{
"description": "Using trigraph-like sequences can lead to developer confusion.",
"kind": "problem",
"name": "Trigraph-like sequences should not be used",
"precision": "medium",
"severity": "warning",
"short_name": "TrigraphLikeSequencesShouldNotBeUsed",
"tags": [
"maintainability",
"readability",
"scope/single-translation-unit"
],
"implementation_scope": {
"description": "The rule checks within string literals only for trigraph-like sequences."
}
}
],
"title": "Trigraph-like sequences should not be used"
}
}
}