现在我有以下代码:
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 text 和 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
}
知道如何配置它吗?