Skip to content

Instantly share code, notes, and snippets.

View sethkinast's full-sized avatar

Seth Kinast sethkinast

View GitHub Profile
@sethkinast
sethkinast / .jshintrc
Last active December 13, 2015 19:28 — forked from haschek/.jshintrc
{
// == Enforcing Options ===============================================
"bitwise" : true, // Prohibit bitwise operators (&, |, ^, etc.).
"curly" : true, // Require {} for every new block or scope.
"eqeqeq" : true, // Require triple equals i.e. `===`.
"forin" : true, // Require `for in` loops to use `hasOwnPrototype` checks.
"immed" : true, // Require immediate invocations to be wrapped in parens e.g. `( function(){}() );`
"latedef" : true, // Prohibit variable use before definition.
"newcap" : true, // Require capitalization of all constructor functions e.g. `new F()`.