JShint mengabaikan baris

// Code here will be linted with JSHint.
/* jshint ignore:start */
// Code here will be ignored by JSHint.
/* jshint ignore:end */
// Code here will be linted with JSHint.

// You can also ignore a single line with a trailing comment like this:

ignoreThis(); // jshint ignore:line
kripi__