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 11{
2+ "camelcase" : true ,
23 "curly" : true ,
34 "eqnull" : true ,
45 "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 */
22
33module . exports = function ( grunt ) {
44
Original file line number Diff line number Diff line change @@ -284,9 +284,9 @@ function cli(api){
284284 }
285285
286286 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..." ) ;
290290 outputHelp ( ) ;
291291 api . quit ( 0 ) ;
292292 }
You can’t perform that action at this time.
0 commit comments