The JSHint option reference lists some options as deprecated with the following notice.
Warning This option has been deprecated and will be removed in the next major release of JSHint. JSHint is limiting its scope to issues of code correctness. If you would like to enforce rules relating to code style, check out the JSCS project.
Specifically, the deprecated options are:
- camelcase
- immed
- indent
- maxlen
- newcap
- noempty
- quotmark
- laxbreak
- laxcomma
- multistr
- sub
Unfortunately, the reference does not indicate how to replace these deprecated options, and merely points to the JSCS GitHub repo.
What JSCS rules correspond to the deprecated JSHint options? Are there any configuration differences to be considered when switching to JSCS?