Skip to content

Commit

Permalink
jshint tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Isao Yagi committed Apr 21, 2013
1 parent 7633fd6 commit e6f00d8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .jshintrc
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// enforcing, over defaults // enforcing, over defaults
"curly": true, // Require {} for every new block or scope "curly": true, // Require {} for every new block or scope
"eqeqeq": true, // Require triple equals (===) for comparison "eqeqeq": true, // Require triple equals (===) for comparison
//"eqnull": true, // Tolerate use of `== null`
"immed": true, // Require wrapping IIFE in parens e.g. `(function () {} ());` "immed": true, // Require wrapping IIFE in parens e.g. `(function () {} ());`
"iterator": false, // No `__iterator__` property "iterator": false, // No `__iterator__` property
"latedef": true, // Require variables/functions to be defined before being used "latedef": true, // Require variables/functions to be defined before being used
Expand All @@ -18,5 +19,7 @@
"globalstrict": true, // Allow global "use strict" (also enables 'strict') "globalstrict": true, // Allow global "use strict" (also enables 'strict')


// env // env
"node": true // node.js //"devel": true, // Development/debugging (alert, confirm, etc)
"node": true, // node.js
"yui": true
} }

0 comments on commit e6f00d8

Please sign in to comment.