git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
497fc98
)
Handle the case where JSLint complains about arguments in try/catch already being...
author
John Resig
<jeresig@gmail.com>
Sun, 17 Oct 2010 14:50:17 +0000
(10:50 -0400)
committer
John Resig
<jeresig@gmail.com>
Sun, 17 Oct 2010 14:50:17 +0000
(10:50 -0400)
build/jslint-check.js
patch
|
blob
|
history
diff --git
a/build/jslint-check.js
b/build/jslint-check.js
index
e76abc0
..
976975a
100644
(file)
--- a/
build/jslint-check.js
+++ b/
build/jslint-check.js
@@
-12,8
+12,8
@@
var ok = {
"Use '===' to compare with 'null'.": true,
"Use '!==' to compare with 'null'.": true,
"Expected an assignment or function call and instead saw an expression.": true,
- "Expected a 'break' statement before 'case'.": true
-
+ "Expected a 'break' statement before 'case'.": true,
+ "'e' is already defined.": true
};
var e = JSLINT.errors, found = 0, w;