sublime安装JSLint

sublime-jslint

注意要安装java,因为用到了java,并且要在path中设置java

打开一个js文件,control+j,即可输出jsLint检查的结果。打开Packages目录,找到插件目录sublime-jslint,打开sublime-jslint.sublime-settings文件,可以修改jsLint配置,还可以配置文件保存时自动检查等,如:

{
// Path to the jslint jar.
// Leave blank to use bundled jar.
"jslint_jar": "",
 
// Options pass to jslint.
// Jerry Qu注:全部可用配置参考这里,https://github.com/fbzhong/sublime-jslint/wiki/Available-jslint4java-options
"jslint_options": "--encoding utf-8 --bitwise --browser --cap --css --devel --debug --evil --forin --fragment --on --sub --white --windows --sloppy",
 
// Ignore errors, regex.
"ignore_errors":
[
// "Expected an identifier and instead saw 'undefined' \(a reserved word\)"
],
 
// run jslint on save.
"run_on_save": false,
 
// debug flag.
"debug": false
}

 

你可能感兴趣的:(sublime)