Update to latest eslint

This commit is contained in:
kpdecker
2015-09-01 17:56:32 -05:00
parent bff5fab8f9
commit 0aef72cb8e
20 changed files with 36 additions and 38 deletions
+2 -2
View File
@@ -39,12 +39,12 @@ global.CompilerContext = {
};
function safeEval(templateSpec) {
/*eslint-disable no-eval, no-console */
/* eslint-disable no-eval, no-console */
try {
return eval('(' + templateSpec + ')');
} catch (err) {
console.error(templateSpec);
throw err;
}
/*eslint-enable no-eval, no-console */
/* eslint-enable no-eval, no-console */
}