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 :)
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:
Actually, that page contains the list of default options, and that file mentioned in @netme's answer has no effect on JSHint's behavior. Quoting a JSHint project maintainer:
Actually, that file is just an example--it has no effect on JSHint's behavior. While it might match the current default behavior, there's no guarantee that it will continue to do so.
This is why the "options" documentation segments the options by the categories "enforcing" and "relaxing". Notice how all the "relaxing" options are about suppressing warnings--these are the constraints that JSHint imposes by default.
While this makes sense once you understand it, it is confusing to a lot of people (myself included), and may change in the future.
来源:https://stackoverflow.com/questions/15642903/complete-list-of-default-values-for-jshint-options