Add JSHint file (based on AirBnB’s style guide)

With a few deviations that made sense…
This commit is contained in:
Joakim Stai 2014-12-18 21:09:57 +01:00
parent 8942d59f7a
commit 842cde4958
1 changed files with 11 additions and 0 deletions

11
.jshintrc Normal file
View File

@ -0,0 +1,11 @@
{
"node": true,
"eqeqeq": true,
"indent": 2,
"latedef": true,
"newcap": true,
"quotmark": "single",
"undef": true,
"unused": true,
"eqnull": true
}