Skip to content
This repository was archived by the owner on Dec 11, 2021. It is now read-only.

Commit 2094699

Browse files
committed
Build: Fix jscs lint errors in task files
Closes gh-118
1 parent 091e54b commit 2094699

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

tasks/alias.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ grunt.registerTask( "perf", [
77
"connect:perf",
88
"perfjankie",
99
"stop-selenium-server"
10-
]);
10+
] );
1111
grunt.registerTask( "svg", [ "svgmin", "svgstore" ] );
1212
};

tasks/options/connect.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = {
77
port: 4200,
88
base: ".",
99
middleware: [
10-
template.middleware({ basedir: __dirname }),
10+
template.middleware( { basedir: __dirname } ),
1111
function( req, res ) {
1212
var data, i,
1313
url = urlParser.parse( req.url, true ),

tasks/selenium_safeguard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = function( grunt ) {
55
grunt.event.on( "selenium.start", function( target, process ) {
66
grunt.log.ok( "Saw process for target: " + target );
77
seleniumChildProcesses[ target ] = process;
8-
});
8+
} );
99

1010
// This trys to gracefully handle failures and kill the selenium server but its not 100%
1111
// if this does is not successfull the task will not run again until this has been killed
@@ -24,5 +24,5 @@ module.exports = function( grunt ) {
2424
grunt.log.warn( "Unable to stop selenium target: " + target );
2525
}
2626
}
27-
});
27+
} );
2828
};

tasks/update_authors.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ module.exports = function( grunt ) {
1313
"Authors ordered by first contribution\n\n" +
1414
authors.join( "\n" ) + "\n" );
1515
done();
16-
});
17-
});
16+
} );
17+
} );
1818
};

0 commit comments

Comments
 (0)