readme, lint

This commit is contained in:
Lloyd Brookes
2014-02-05 15:28:23 +01:00
parent 88ec4906d7
commit 85266f91e0
3 changed files with 46 additions and 7 deletions

18
.jshintrc Normal file
View File

@ -0,0 +1,18 @@
{
"bitwise": true,
"camelcase": true,
"eqeqeq": true,
"globals": { "describe" : false, "it": false, "beforeEach": false },
"globalstrict": false,
"indent": 4,
"latedef": true,
"laxbreak": true,
"maxparams": 3,
"multistr": true,
"newcap": true,
"node": true,
"quotmark": "double",
"trailing": true,
"undef": true,
"unused": "strict"
}