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
+1
Original file line number
Diff line number
Diff line change
@@ -85,6 +85,7 @@ Since CodeChecker-related paths vary greatly between systems, the following sett
85
85
| --- | --- |
86
86
| CodeChecker > Backend > Output folder <br> (default: `${workspaceFolder}/.codechecker`) | The output folder where the CodeChecker analysis files are stored. |
87
87
| CodeChecker > Backend > Compilation database path <br> (default: *(empty)*) | Path to a custom compilation database, in case of a custom build system. The database setup dialog sets the path for the current workspace only. Leave blank to use the database in CodeChecker's output folder, or to use CodeChecker's autodetection for multi-root workspaces. |
88
+
| CodeChecker > Editor > Custom bug severities <br> (default: `null`) | Control how a bug is displayed in the editor, depending on what its severity is. Bugs can be displayed as 'Error', 'Warning', 'Information' or 'Hint'. By default, everything except 'STYLE' severity is displayed as an error. Configured as an array, such as `{ "UNSPECIFIED": "Warning", "LOW": "Warning" }`|
88
89
| CodeChecker > Editor > Show database dialog <br> (default: `on`) | Controls the dialog when opening a workspace without a compilation database. |
89
90
| CodeChecker > Editor > Enable CodeLens <br> (default: `on`) | Enable CodeLens for displaying the reproduction path in the editor. |
Copy file name to clipboardExpand all lines: package.json
+8
Original file line number
Diff line number
Diff line change
@@ -158,6 +158,14 @@
158
158
"description": "Enable CodeLens for displaying the reproduction path",
159
159
"default": true
160
160
},
161
+
"codechecker.editor.customBugSeverities": {
162
+
"type": [
163
+
"object",
164
+
"null"
165
+
],
166
+
"description": "Control how a bug is displayed in the editor, depending on what its severity is. Bugs can be displayed as 'Error', 'Warning', 'Information' or 'Hint'. By default, everything except 'STYLE' severity is displayed as an error.",
167
+
"default": null
168
+
},
161
169
"codechecker.executor.enableNotifications": {
162
170
"type": "boolean",
163
171
"description": "Enable pop-up notifications. Past messages are accessible via the sidebar menu regardless of this setting.",
0 commit comments