Gruntfile.js 457 B

1234567891011121314151617181920
  1. module.exports = function(grunt) {
  2. grunt.initConfig({
  3. jshint: {
  4. options: {
  5. trailing: true
  6. },
  7. target: {
  8. src : [
  9. 'converse.js',
  10. 'mock.js',
  11. 'main.js',
  12. 'tests_main.js',
  13. 'spec/*.js'
  14. ]
  15. }
  16. }
  17. });
  18. grunt.loadNpmTasks('grunt-contrib-jshint');
  19. grunt.registerTask('default', ['jshint']);
  20. };