This reporter is to be used with JSHint to log errors out to a file in markdown. This is useful for creating error files that are easy to view in any markdown viewer.
$ npm install jshint-md-reporter --save-devUsing it with:
jshint --reporter node_modules/jshint-md-reporter/lib/reporter.js file.jsGulp:
Coming soon...grunt.initConfig({
jshint: {
options: {
reporter: require('jshint-md-reporter'),
reporterOutput: 'jshint-report.md'
},
target: ['file.js']
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['jshint']);To run the tests, you have to first make sure the dependencies are installed on your system by running:
$ npm installThen run npm test from the command line:
$ npm testjshint-md-reporter is Copyright 2015 Justin Chmura. All Rights Reserved.
Distributed under MIT License.