dotfiles/.vscode/extensions/saviorisdead.RustyCode-0.18.0/node_modules/tmp/Gruntfile.js

19 lines
388 B
JavaScript
Raw Normal View History

2016-09-11 09:29:13 +01:00
module.exports = function(grunt) {
grunt.initConfig({
jshint: {
all: ['Gruntfile.js', 'lib/*.js', 'test/*.js']
},
vows: {
all: {
src: ['test/*.js'],
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
//grunt.loadNpmTasks('grunt-vows-runner');
grunt.loadNpmTasks('grunt-vows');
grunt.registerTask('default', ['jshint', 'vows']);
};