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: docs/config.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -165,7 +165,7 @@ The following groups are supported for the *global-groups* configuration propert
165
165
166
166
*literally-anything*:: all possible global variables.
167
167
All global variables are defined as shadowable and writable.
168
-
This in effect suppresses E0002, E0033, E0057, or E0059 entirely (except if variables are also configured using the *globals* configuration property).
168
+
This in effect suppresses E0002, E0033, E0057, E0059, or E0214 entirely (except if variables are also configured using the *globals* configuration property).
169
169
This group is not enabled by default.
170
170
*browser*:: globals defined in HTML and DOM standards, including *window*, *alert*, and *console*.
171
171
This group is enabled by default.
@@ -215,7 +215,7 @@ Such an application might have the following `quick-lint-js.config` file:
215
215
216
216
'''
217
217
218
-
If you want to suppress E0002, E0033, E0057, or E0059, configure *globals* or *global-groups*.
218
+
If you want to suppress E0002, E0033, E0057, E0059, or E0214, configure *globals* or *global-groups*.
219
219
For example, if you're seeing a spurious warning E0057 "use of undeclared variable: MyLibrary" (false positive), use the following configuration in `quick-lint-js.config`:
220
220
221
221
[source,json]
@@ -227,7 +227,7 @@ For example, if you're seeing a spurious warning E0057 "use of undeclared variab
227
227
}
228
228
----
229
229
230
-
If you are not seeing E0002, E0033, E0057, or E0059 (false negative), but you want to see E0057 "use of undeclared variable: $", use one of the following configuration in `quick-lint-js.config`:
230
+
If you are not seeing E0002, E0033, E0057, E0059, or E0214 (false negative), but you want to see E0057 "use of undeclared variable: $", use one of the following configuration in `quick-lint-js.config`:
0 commit comments