I'm looking for a way for jscs (JavaScript Code Style) do the same behavior as jshint to ignore certain rules per file with a comment at the top, or per line, with a start and end comment.
jshint example to ignore a specific rule in the file :
/* jshint undef: false */
jshint example to ignore a specific rule in a block:
// Code here will be linted with JSHint.
/* jshint ignore:start */
// Code here will be linted with ignored by JSHint.
/* jshint ignore:end */
//jscs:disable // Code here will be ignored by JSCS. //jscs:enable
– Algin