We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d31b8bf commit 75b0921Copy full SHA for 75b0921
Gruntfile.js
@@ -2,16 +2,23 @@
2
3
module.exports = function (grunt) {
4
grunt.loadNpmTasks('grunt-jslint');
5
+ grunt.loadNpmTasks("grunt-vows");
6
grunt.loadTasks('./tasks');
7
8
// Project configuration.
9
grunt.initConfig({
10
11
+ vows: {
12
+ src: [
13
+ 'test/*.js'
14
+ ]
15
+ },
16
+
17
jslint: {
18
files: [
19
'lib/**/*.js',
20
'test/**/*.js',
- 'grunt.js'
21
+ 'Gruntfile.js'
22
],
23
directives: {
24
node: true,
0 commit comments