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: microsoft-edge/visual-studio-code/microsoft-edge-devtools-extension.md
+27-1Lines changed: 27 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: MSEdgeTeam
5
5
ms.author: msedgedevrel
6
6
ms.topic: conceptual
7
7
ms.prod: microsoft-edge
8
-
ms.date: 07/07/2022
8
+
ms.date: 09/07/2022
9
9
---
10
10
# Microsoft Edge DevTools extension for Visual Studio Code
11
11
@@ -74,6 +74,32 @@ Issues are evaluated live while you edit your code. As you type, you get feedba
74
74

75
75
76
76
77
+
#### Automated Quick Fixes and issue filtering
78
+
79
+
<!--
80
+
bold "Quick Fix" when focusing on the UI
81
+
the UI label string is "Quick Fix", not "Quick Fixes"
82
+
-->
83
+
84
+
The Microsoft Edge DevTools extension for Visual Studio Code includes a **Quick Fix** feature. By using Quick Fixes, you can customize the error reporting of the extension to meet the needs of the current project.
85
+
86
+
When you hover over an element that has an issue, you get a lightbulb icon indicating that there are Quick Fixes available:
87
+
88
+

89
+
90
+
Clicking the lightbulb icon shows a list of options. For example, if you added a link that has a protocol-relative URL, you get the following **Quick Fix** list to choose from:
91
+
92
+

93
+
94
+
You can select whichever **Quick Fix** you want to use to resolve the issue or to stop reporting it as an issue:
95
+
96
+
***Fix "no-protocol-relative-urls" issue** - Adds the missing URL prefix `https://` to the link.
97
+
98
+
***Disable "no-protocol-relative-urls" hints in this project** - Creates a `.hintrc` configuration file in the project folder, and tells the extension never to report this issue again.
99
+
100
+
***Edit .hintrc for this project** - Opens the `.hintrc` configuration file so you can edit it to customize the extension's error reporting.
0 commit comments