Skip to content

Commit

Permalink
change jshint globals to be read-only
Browse files Browse the repository at this point in the history
  • Loading branch information
baer committed Jul 31, 2014
1 parent 60ca846 commit 389f9c4
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,19 @@

// Custom Globals
"globals": {
"angular": true,
"define": true,
"require": true,
"exports": true,
"module": true,
"describe": true,
"before": true,
"beforeEach": true,
"after": true,
"afterEach": true,
"it": true,
"inject": true,
"expect": true,
"spyOn": true
"angular" : true,
"define" : false,
"require" : false,
"exports" : false,
"module" : false,
"describe" : false,
"before" : false,
"beforeEach" : false,
"after" : false,
"afterEach" : false,
"it" : false,
"inject" : false,
"expect" : false,
"spyOn" : false
}
}

0 comments on commit 389f9c4

Please sign in to comment.