mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-16 11:36:49 +00:00
11 lines
431 B
JavaScript
11 lines
431 B
JavaScript
/**
|
|
* Since jshint's CLI doesn't currently support multiple reporters it is necessary
|
|
* to create a wrapper reporter if jshint-stylish-summary should be used in combination
|
|
* with another reporter.
|
|
*/
|
|
module.exports = {
|
|
reporter: function(result, config, options) {
|
|
require('jshint-stylish').reporter(result, config, options);
|
|
require('jshint-stylish-summary').reporter(result, config, options);
|
|
}
|
|
}; |