mirror of
https://github.com/github/codeql.git
synced 2026-04-08 00:24:03 +02:00
27 lines
472 B
XML
27 lines
472 B
XML
<!DOCTYPE qhelp PUBLIC
|
|
"-//Semmle//qhelp//EN"
|
|
"qhelp.dtd">
|
|
<qhelp>
|
|
<overview>
|
|
<p>
|
|
JSLint directives must not start with a space. For example, <code>/* global window*/</code>
|
|
is not a valid directive, and will not be recognized by JSLint.
|
|
</p>
|
|
|
|
</overview>
|
|
<recommendation>
|
|
|
|
<p>
|
|
Remove the space: <code>/*global window*/</code>.
|
|
</p>
|
|
|
|
</recommendation>
|
|
<references>
|
|
|
|
|
|
<li>JSLint: <a href="http://www.jslint.com/help.html">JSLint Help</a>.</li>
|
|
|
|
|
|
</references>
|
|
</qhelp>
|