We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1aa198 commit e166467Copy full SHA for e166467
pages/docs.md
@@ -86,12 +86,12 @@ A directive for telling JSHint about global variables that are defined
86
elsewhere. If value is `false` (default), JSHint will consider that variable
87
as read-only. Use it together with the `undef` option.
88
89
- /* global MY_LIB: false */
+ /* globals MY_LIB: false */
90
91
You can also blacklist certain global variables to make sure they are not used
92
anywhere in the current file.
93
94
- /* global -BAD_LIB */
+ /* globals -BAD_LIB */
95
96
#### exported
97
0 commit comments