File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
+ "camelcase" : true ,
2
3
"curly" : true ,
3
4
"eqnull" : true ,
4
5
"forin" : true ,
Original file line number Diff line number Diff line change 1
- /* jshint evil:true, node:true */
1
+ /* jshint camelcase:false, evil:true, node:true */
2
2
3
3
module . exports = function ( grunt ) {
4
4
Original file line number Diff line number Diff line change @@ -284,9 +284,9 @@ function cli(api){
284
284
}
285
285
286
286
function validateOptions ( options ) {
287
- for ( var option_key in options ) {
288
- if ( ! globalOptions . hasOwnProperty ( option_key ) && option_key !== "files" ) {
289
- api . print ( option_key + " is not a valid option. Exiting..." ) ;
287
+ for ( var optionKey in options ) {
288
+ if ( ! globalOptions . hasOwnProperty ( optionKey ) && optionKey !== "files" ) {
289
+ api . print ( optionKey + " is not a valid option. Exiting..." ) ;
290
290
outputHelp ( ) ;
291
291
api . quit ( 0 ) ;
292
292
}
You can’t perform that action at this time.
0 commit comments