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
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ the entire line wherever a diagnostic is generated by the language and also prin
30
30
|errorLens.selectProblem|Error Lens: Set editor selection to the problem range (controlled by `errorLens.selectProblemType` setting).|
31
31
|errorlens.toggleWorkspace|Error Lens: Exclude/Include current workspace by fs path.|
32
32
|errorLens.disableLine|Error Lens: Add a comment to disable line for linter rule. Comment format is controlled by `"errorLens.disableLineComments"` setting.|
33
-
|errorLens.findLinterRuleDefinition|Error Lens: Search in local linter files (like `.eslintrc.json`) for the rule definition.|
33
+
|errorLens.findLinterRuleDefinition|Error Lens: Search in local linter files (like `.eslintrc.json`) for the rule definition. Target files are controlled by "errorLens.lintFilePaths" setting.|
34
34
|errorLens.copyProblemMessage|Error Lens: Copy problem message to the clipboard (at the active cursor).|
35
35
|errorLens.copyProblemCode|Error Lens: Copy problem code to the clipboard (at the active cursor).|
36
36
<!-- COMMANDS_END -->
@@ -49,7 +49,7 @@ the entire line wherever a diagnostic is generated by the language and also prin
49
49
|fontStyleItalic|**false**|When enabled - shows inline message in italic font style.|
50
50
|fontSize|""|Font size of inline message ([CSS units](https://developer.mozilla.org/en-US/docs/Web/CSS/length)).|
51
51
|margin|"4ch"|Distance between the last word on the line and the start of inline message ([CSS units](https://developer.mozilla.org/en-US/docs/Web/CSS/length)).|
52
-
|alignMessage|\{"start":0, "end":0, "minimumMargin":0\}|Align inline error message (either by starting position or ending position).|
52
+
|alignMessage|\{"start":0, "end":0, "minimumMargin":0\}|Align inline error message (either by starting position or ending position). Set "start" and "end" to **0** to disable.|
53
53
|padding|""|Padding of the inline message. Visible when `#errorLens.messageBackgroundMode#` is set to "message".|
54
54
|borderRadius|"0.2em"|Border radius of the inline message. Visible when `#errorLens.messageBackgroundMode#` is set to "message".|
55
55
|enabledDiagnosticLevels|\["error", "warning", "info"\]|Customize which diagnostic levels(severity) to highlight.|
@@ -86,7 +86,7 @@ the entire line wherever a diagnostic is generated by the language and also prin
86
86
|delay|**0**|Delay (ms) before showing problem decorations (**0** to disable). Minimum delay of **500** is enforced by the extension. `#errorLens.delayMode#` controls how to handle the delay.|
87
87
|delayMode|"new"|Pick which version of the delay to use.|
88
88
|onSave|**false**|When enabled - updates decorations only on document save (manual).|
89
-
|onSaveTimeout|**1000**|Time period (ms) that used for showing decorations after the document save.|
89
+
|onSaveTimeout|**1000**|Time period (ms) that used for showing decorations after the document save (manual, not auto save).|
90
90
|onSaveUpdateOnActiveEditorChange|**true**|When `#errorLens.onSave#` enabled - extension still draws decorations when active/visible editors change.|
91
91
|enableOnDiffView|**false**|Enable decorations when viewing a diff view in the editor (e.g. Git diff).|
92
92
|followCursor|"allLines"|Highlight only portion of the problems.|
Copy file name to clipboardExpand all lines: package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@
104
104
{
105
105
"command": "errorLens.findLinterRuleDefinition",
106
106
"title": "Find Linter Rule Definition",
107
-
"description": "Search in local linter files (like `.eslintrc.json`) for the rule definition.",
107
+
"description": "Search in local linter files (like `.eslintrc.json`) for the rule definition. Target files are controlled by \"errorLens.lintFilePaths\" setting.",
108
108
"category": "Error Lens"
109
109
},
110
110
{
@@ -228,7 +228,7 @@
228
228
"end": 0,
229
229
"minimumMargin": 0
230
230
},
231
-
"markdownDescription": "Align inline error message (either by starting position or ending position).",
231
+
"markdownDescription": "Align inline error message (either by starting position or ending position). Set \"start\" and \"end\" to **0** to disable.",
0 commit comments