Skip to content
This repository was archived by the owner on Jan 15, 2022. It is now read-only.

Commit fbc4a6d

Browse files
committed
remove useless colon
1 parent a9b6f82 commit fbc4a6d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Gruntfile.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ module.exports = function(grunt) {
1515
jshint : {
1616
all : [ 'Gruntfile.js', 'tasks/*.js', '<%= nodeunit.tests %>' ],
1717
options : {
18-
jshintrc : '.jshintrc',
19-
},
18+
jshintrc : '.jshintrc'
19+
}
2020
},
2121

2222
// Before generating any new files, remove any previously-created files.
2323
clean : {
24-
tests : [ 'tmp' ],
24+
tests : [ 'tmp' ]
2525
},
2626

2727
// Configuration to be run (and then tested).
@@ -34,12 +34,12 @@ module.exports = function(grunt) {
3434
dest : 'tmp/combined',
3535
filter : 'isDirectory'
3636
} ]
37-
},
37+
}
3838
},
3939

4040
// Unit tests.
4141
nodeunit : {
42-
tests : [ 'test/*_test.js' ],
42+
tests : [ 'test/*_test.js' ]
4343
},
4444

4545
});

0 commit comments

Comments
 (0)