forked from SonarSource/sonar-training-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathissues.json
37 lines (37 loc) · 933 Bytes
/
issues.json
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
30
31
32
33
34
35
36
37
{ "issues": [
{
"engineId": "fair-employer",
"ruleId": "gender-forbidden",
"severity":"MAJOR",
"type":"CODE_SMELL",
"primaryLocation": {
"message": "Compensation calculation based on employee gender is forbidden",
"filePath": "src/employee.js",
"textRange": {
"startLine": 17,
"endLine": 21,
"startColumn": 4,
"endColumn": 5
}
},
"effortMinutes": 20
},
{
"engineId": "fair-employer",
"ruleId": "religion-forbidden",
"severity": "CRITICAL",
"type": "CODE_SMELL",
"primaryLocation": {
"message": "Storing employee religion is forbidden",
"filePath": "src/employee.js",
"textRange": {
"startLine": 25,
"endLine": 25,
"startColumn": 4,
"endColumn": 17
},
"effortMinutes": 5
}
}
]
}