Fix jshint issues

* add .jshintrc
* address semicolon errors
* ignore 'already defined' errors
This commit is contained in:
daviskoh
2015-02-05 19:49:55 -05:00
parent 6956b56765
commit cf9b841e33
5 changed files with 23 additions and 8 deletions

14
.jshintrc Normal file
View File

@@ -0,0 +1,14 @@
{
"browser": true,
"shadow": true,
"globals": {
"describe": true,
"beforeEach": true,
"afterEach": true,
"spyOn": true,
"it": true,
"xit": true,
"expect": true,
"require": true
}
}