admin管理员组文章数量:1346336
JSlint allows setting options in a ment block at the beginning of your script and some of them could help make it less annoying to use. I am hoping for some more productivity.
I picked these to start with:
/*jslint devel: true, browser: true, unparam: true, debug: false, es5: true, white: true, maxerr: 50, indent: 4 */
What are the established defaults?
[I am really trying to make it NOT subjective, but yeah, I want to know what works for you]
JSlint allows setting options in a ment block at the beginning of your script and some of them could help make it less annoying to use. I am hoping for some more productivity.
I picked these to start with:
/*jslint devel: true, browser: true, unparam: true, debug: false, es5: true, white: true, maxerr: 50, indent: 4 */
What are the established defaults?
[I am really trying to make it NOT subjective, but yeah, I want to know what works for you]
Share Improve this question asked May 7, 2012 at 21:53 naugturnaugtur 16.9k5 gold badges72 silver badges113 bronze badges3 Answers
Reset to default 5Basically this works for me, disabled all annoying stuff.
/*jslint white: true, browser: true, devel: true, windows: true, forin: true, vars: true, nomen: true, plusplus: true, bitwise: true, regexp: true, sloppy: true, indent: 4, maxerr: 50 */
What do you mean by "less annoying for use"? Not using JSLint is the least annoying.
The defaults are already set by default in JSLint; thus, the defaults are "no overrides". However, in some cases you have to override the defaults; for you, that would probably be browser: true
(to allow javascript to interact with browser) and devel: true
(if you want to use alert
, console.log
etc; btw, consider using browser's integrated debugger instead).
You can install Komodo Edit (open source editor) and use its configuration tool for JsLint or JsHint, here is how for JsLint:
which gives you the config string
本文标签: javascriptRecommended jslint configStack Overflow
版权声明:本文标题:javascript - Recommended jslint config? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743825878a2545628.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论