We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
curly
1 parent 36cceb5 commit 7fe3f62Copy full SHA for 7fe3f62
.jshintrc
@@ -1,6 +1,7 @@
1
{
2
"boss": true,
3
"browser": true,
4
+ "curly": true,
5
"eqnull": true,
6
"expr": true,
7
"immed": true,
gruntFile.js
@@ -17,7 +17,9 @@ module.exports = function(grunt) {
17
function fakeTargetTask(prefix){
18
return function(){
19
20
- if (this.args.length !== 1) return grunt.log.fail('Just give the name of the ' + prefix + ' you want like :\ngrunt ' + prefix + ':bower');
+ if (this.args.length !== 1) {
21
+ return grunt.log.fail('Just give the name of the ' + prefix + ' you want like :\ngrunt ' + prefix + ':bower');
22
+ }
23
24
var done = this.async();
25
var spawn = require('child_process').spawn;
0 commit comments