Skip to content

Commit

Permalink
chore(lint): Sanity
Browse files Browse the repository at this point in the history
(x == null) must be allowed

late definition of internal functions is a good habit.
  • Loading branch information
thepian committed Feb 1, 2015
1 parent ec0f733 commit efbcf5f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
"bitwise" : true,
"curly" : true,
"eqeqeq" : true,
"eqnull" : true,
"forin" : true,
"immed" : true,
"latedef" : true,
"latedef" : "nofunc",
"newcap" : true,
"noarg" : true,
"noempty" : true,
Expand Down

0 comments on commit efbcf5f

Please sign in to comment.