Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Where can I get the complete list of JSHint default options. I tried searching online but couldn't find anything.

EDIT: I mean a list of default values for all options, in case it wasn't clear :)

question from:https://stackoverflow.com/questions/15642903/complete-list-of-default-values-for-jshint-options

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
128 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can look on boolOptions, valOptions and invertedOptions objects directly in jshint sources:

https://github.com/jshint/jshint/blob/master/examples/.jshintrc

If you are confused with comments, you can refer to options section in jshint help:

http://jshint.com/docs/options/


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...