-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.devskim.json
More file actions
65 lines (65 loc) · 2.08 KB
/
.devskim.json
File metadata and controls
65 lines (65 loc) · 2.08 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"AbsolutePaths": false,
"BasePath": "",
"CommentsPath": "",
"Confidences": [
"High",
"Medium"
],
"ConsoleVerbosityLevel": "Information",
"CrawlArchives": false,
"DisableConsoleOutput": false,
"DisableParallel": false,
"DisableSuppression": false,
"ExitCodeIsNumIssues": false,
"Globs": [
"**/.git/**",
"**/megalinter-reports/**"
],
"IgnoreDefaultRules": false,
"IgnoreRuleIds": [],
"LanguageRuleIgnoreMap": {},
"LanguagesPath": "",
"LogFileLevel": "Error",
"LogFilePath": null,
"OutputFile": "",
"OutputFileFormat": "",
"OutputTextFormat": "",
"RespectGitIgnore": false,
"RuleIds": [],
"Rules": [],
"Severities": [
"Critical",
"Important",
"Moderate",
"BestPractice",
"ManualReview"
],
"SkipExcerpts": false,
"Suppressions": [
{
"Justification": "False positive: localhost redirect URI is required for OAuth dev flow (only present in development builds, not production)",
"FilePattern": "**/exportUtils.js",
"LineNumber": 359,
"RuleId": "DS162092"
},
{
"Justification": "Development-only: Binding server to localhost is required for secure local OAuth testing. This code is not present in production builds, and does not expose any security risk in release artifacts.",
"FilePattern": "**/main.js",
"LineNumber": 801,
"RuleId": "DS162092"
},
{
"Justification": "Development-only: Checking for localhost is required for dev/debug logic. This code is not present in production builds.",
"FilePattern": "**/renderer.js",
"LineNumber": 58,
"RuleId": "DS162092"
},
{
"Justification": "Development-only: Checking for 127.0.0.1 is required for dev/debug logic. This code is not present in production builds.",
"FilePattern": "**/renderer.js",
"LineNumber": 59,
"RuleId": "DS162092"
}
]
}