現在、次のコードがあります。
if (c > last) break;
そして、jslintは不平を言います
jslint:crud.js:69:19:Expected '{' and instead saw 'break'.
それを克服するにはいくつかの方法があります。
if (c > last) { break; }
また
if (c > last) {
break;
}
しかし、if ステートメントが同じ行にあるときに jslint が文句を言わないようにしたいと思います。
設定する方法はありますか?
ところで:私は次の構成で、崇高なテキストと sublime-jslint プラグインを使用しています:
{
// Path to the jslint jar.
// Leave blank to use bundled jar.
"jslint_jar": "",
// Options pass to jslint.
"jslint_options": "--indent 2 --white --maxerr 10000 --nomen --browser --plusplus --es5",
// Ignore errors, regex.
"ignore_errors":
[
"Combine this with the previous 'var' statement.",
"It is not necessary to initialize"
],
// run jslint on save.
"run_on_save": false,
// debug flag.
"debug": false
}
それを構成する方法はありますか?