Updated JSHint settings, include smoke test.

This commit is contained in:
Robin Ward
2013-02-21 16:25:40 -05:00
parent 6a617348e5
commit 588c79e637
3 changed files with 11 additions and 7 deletions

View File

@@ -9,6 +9,7 @@
paths:
- app/assets/javascripts/**/*.js
- spec/javascripts/**/*.js
- spec/phantom_js/**/*.js
exclude_paths:
- app/assets/javascripts/external/*
@@ -22,7 +23,7 @@ exclude_paths:
# "enforce" type options (true means potentially more warnings)
adsafe: false # true if ADsafe rules should be enforced. See http://www.ADsafe.org/
bitwise: false # true if bitwise operators should not be allowed
bitwise: true # true if bitwise operators should not be allowed
newcap: true # true if Initial Caps must be used with constructor functions
eqeqeq: true # true if === should be required (for ALL equality comparisons)
immed: false # true if immediate function invocations must be wrapped in parens