Skip to content

Instantly share code, notes, and snippets.

@salbertson
Created February 5, 2015 16:27
Show Gist options
  • Save salbertson/8186a6bfa5ac362c825b to your computer and use it in GitHub Desktop.
Save salbertson/8186a6bfa5ac362c825b to your computer and use it in GitHub Desktop.
JavaScript style guide for Hound
{
"asi": false,
"bitwise": true,
"browser": true,
"camelcase": true,
"curly": true,
"forin": true,
"immed": true,
"latedef": "nofunc",
"maxlen": 80,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"predef": [
"$",
"jQuery",
"jasmine",
"beforeEach",
"describe",
"expect",
"it",
"angular",
"inject",
"module"
],
"quotmark": true,
"trailing": true,
"undef": true,
"unused": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment