admin管理员组文章数量:1339794
jslint can check indent by run 'jslint --indent 4 test.js', but I don't get it work in jshint. I do it as the follow steps.
- install jshint through "npm install -g jshint"
- edit ~/.jshintrc, my jshintrc looks like
{..., "indent":4, "white":false, ...}
- edit js file test.js
/jshint indent:4/ var condition, doSth; if (condition) doSth(); // expected to be invalid
- run jshint test.js, but the indent checking is not working. The 2 spaces started line can pass the check.
jslint can check indent by run 'jslint --indent 4 test.js', but I don't get it work in jshint. I do it as the follow steps.
- install jshint through "npm install -g jshint"
- edit ~/.jshintrc, my jshintrc looks like
{..., "indent":4, "white":false, ...}
- edit js file test.js
/jshint indent:4/ var condition, doSth; if (condition) doSth(); // expected to be invalid
- run jshint test.js, but the indent checking is not working. The 2 spaces started line can pass the check.
1 Answer
Reset to default 15It's a version problem. I use 2.5.0 while 2.4 works.
Take a look at https://github./jshint/jshint/releases/tag/2.5.0:
We decided to label it 2.5.0 because—while it's backwards patible—there are a few major changes.
The following options were removed: nomen, onevar, passfail, white, gcl, smarttabs, trailing. In addition to that, indent no longer provides warnings about indentation levels. You can still use it to set your tab-width but it will be used only for character locations in other warnings. JSHint won't error if you have these options in your config or your files; it will simply ignore them.
Thanks to our contributors, we fixed a lot of bugs in our parser. We also improved our ES6 support by adding basic support for template literals.
本文标签: javascriptHow can I make jshint indent options workStack Overflow
版权声明:本文标题:javascript - How can I make jshint indent options work - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743601894a2508712.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论