Run jshint on output

Allows us to execute jshint in non-forced mode.
This commit is contained in:
kpdecker
2013-12-01 15:40:08 -06:00
parent 86974b2660
commit f17cb3ecac
11 changed files with 15 additions and 14 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ ID [^\s!"#%-,\.\/;->@\[-\^`\{-~]+/{LOOKAHEAD}
<mu>".." return 'ID';
<mu>"."/{LOOKAHEAD} return 'ID';
<mu>[\/.] return 'SEP';
<mu>\s+ /*ignore whitespace*/
<mu>\s+ // ignore whitespace
<mu>"}"{RIGHT_STRIP}?"}}" this.popState(); return 'CLOSE_UNESCAPED';
<mu>{RIGHT_STRIP}?"}}" this.popState(); return 'CLOSE';
<mu>'"'("\\"["]|[^"])*'"' yytext = strip(1,2).replace(/\\"/g,'"'); return 'STRING';
+1
View File
@@ -0,0 +1 @@
/* jshint ignore:start */
+1
View File
@@ -1 +1,2 @@
export default handlebars;
/* jshint ignore:end */