You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-11Lines changed: 17 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,33 +92,34 @@ The Red Hat Dependency Analytics extension has some configurable parameters that
92
92
93
93
### Configurable parameters
94
94
95
-
**Red Hat Dependency Analytics Report File Path**:
96
-
<br >Specify the local path to create the Red Hat Dependency Analytics report file.
95
+
#### Red Hat Dependency Analytics Report File Path:
96
+
Specify the local path to create the Red Hat Dependency Analytics report file.
97
97
The default path is `/tmp/redhatDependencyAnalyticsReport.html`.
98
98
99
-
<br >**IMPORTANT:**
100
-
<br >The `redHatDependencyAnalyticsReportFilePath` setting name has changed to `reportFilePath`.
99
+
**IMPORTANT:**
101
100
102
-
**Inline Vulnerability Severity Alerts** :
103
-
<br >You can set the vulnerability severity alert level to `Error` or `Warning` for inline notifications of detected vulnerabilities.
101
+
The `redHatDependencyAnalyticsReportFilePath` setting name has changed to `reportFilePath`.
104
102
105
-
**Python** :
103
+
#### Inline Vulnerability Severity Alerts:
104
+
You can set the vulnerability severity alert level to `Error` or `Warning` for inline notifications of detected vulnerabilities.
105
+
106
+
#### Python:
106
107
*`usePythonVirtualEnvironment` : Automates the installation of missing packages in a Python virtual environment.
107
108
*`enablePythonBestEffortsInstallation` : Installs Python packages for the Python version is use, disregarding declared versions.
108
109
This configuration option requires the _Match Manifest Versions_ option set to `false`, and _Use Python Virtual Environment_ option set to `true`.
109
110
*`usePipDepTree` : Use the `pipdeptree` command-line tool for building the Python dependency tree.
110
111
This can enhance analysis time.
111
112
112
-
**Golang**:
113
+
#### Golang:
113
114
*`useGoMVS` : Use the minimal version selection algorithm to select a set of module versions to use when building Go packages.
114
115
115
-
**HTTP Proxy**:
116
+
#### HTTP Proxy:
116
117
*`httpProxy` : Configure HTTP proxy settings for the extension. There are three options available:
117
118
-`on`: Always use the HTTP proxy regardless of VS Code's proxy settings
118
119
-`off`: Never use the HTTP proxy regardless of VS Code's proxy settings
119
120
-`fallback`: Use VS Code's proxy settings (default behavior)
120
121
121
-
**Maven and Gradle Wrappers**:
122
+
#### Maven and Gradle Wrappers:
122
123
*`preferWrapper` : Configure whether to use Maven or Gradle wrappers. There are three options available:
123
124
-`true`: Always use the wrapper regardless of VS Code's `maven.preferMavenWrapper` setting
124
125
-`false`: Never use the wrapper regardless of VS Code's `maven.preferMavenWrapper` setting
@@ -130,11 +131,16 @@ The default path is `/tmp/redhatDependencyAnalyticsReport.html`.
130
131
"preferWrapper": "true/false/fallback"
131
132
},
132
133
"gradle": {
133
-
preferWrapper": "true/false/fallback"
134
+
"preferWrapper": "true/false/fallback"
134
135
}
135
136
}
136
137
```
137
138
139
+
#### Exclude manifests from analysis:
140
+
Specify glob patterns for manifests to be ignored for background analysis e.g. `**/test/**/package.json` will ignore all package.json files within `test/` or any subdirectories of it.
141
+
142
+
**NOTE:** Only forward slash (`/`) is supported as a path separator. Please use forward slash as the path separator even for Windows paths.
Copy file name to clipboardExpand all lines: package.json
+9-11Lines changed: 9 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -188,16 +188,6 @@
188
188
"markdownDescription": "Enable usage data and errors to be sent to Red Hat servers. Read our [privacy statement](https://developers.redhat.com/article/tool-data-collection).",
189
189
"scope": "window"
190
190
},
191
-
"redHatDependencyAnalyticsServer.trace.server": {
192
-
"type": "string",
193
-
"enum": [
194
-
"off",
195
-
"messages",
196
-
"verbose"
197
-
],
198
-
"default": "off",
199
-
"description": "Traces the communication between VSCode and the Red Hat Dependency Analytics Language Server."
0 commit comments