Skip to content

Commit

Permalink
Tweaked jshintrc to allow initial and trailing underscores.
Browse files Browse the repository at this point in the history
  • Loading branch information
winhamwr committed Oct 27, 2011
1 parent dda8ba0 commit 2b1a0fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"newcap" : true, // Require capitalization of all constructor functions e.g. `new F()`.
"noempty" : true, // Prohibit use of empty blocks.
"nonew" : true, // Prohibit use of constructors for side-effects.
"nomen" : true, // Prohibit use of initial or trailing underbars in names.
"nomen" : false, // Prohibit use of initial or trailing underbars in names.
"onevar" : true, // Allow only one `var` statement per function.
"plusplus" : true, // Prohibit use of `++` & `--`.
"sub" : false, // Tolerate all forms of subscript notation besides dot notation e.g. `dict['key']` instead of `dict.key`.
Expand Down

0 comments on commit 2b1a0fc

Please sign in to comment.