Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 776 Bytes

README.md

File metadata and controls

19 lines (10 loc) · 776 Bytes

qHint - Integrating jsHint into qUnit

This small script lets you integrate jsHint coding style validation into your qUnit unit tests. For more information, see the blog post Enforcing coding conventions with jsHint and qUnit

JsHint in a QUnit suite

Usage

  1. Include the qhint.js file after qUnit and before calling it.

  2. Call the jsHintTest function like this:

    jsHintTest(*file* [, *options*, [*globals*]]);

    Optionally, you can name the test:

    jsHintTest(*name*, *file* [, *options*, [*globals*]]);

    You can also use the qHint() alias of the same function, depending on your preferences.