diff --git a/src/compiler/compile/render-dom/index.ts b/src/compiler/compile/render-dom/index.ts index bdba98639a..46aa705bfb 100644 --- a/src/compiler/compile/render-dom/index.ts +++ b/src/compiler/compile/render-dom/index.ts @@ -371,7 +371,7 @@ export default function dom( }) .map(n => `$$dirty.${n}`).join(' || '); - let snippet = `[✂${d.node.body.start}-${d.node.end}✂]`; + let snippet = `[✂${d.node.body.start}-${d.node.end}✂]`; if (condition) snippet = `if (${condition}) { ${snippet} }`; if (condition || uses_props) { diff --git a/test/.eslintrc.json b/test/.eslintrc.json index 4a5acc2244..d5ba8f9d9c 100644 --- a/test/.eslintrc.json +++ b/test/.eslintrc.json @@ -1,6 +1,5 @@ { "rules": { - "@typescript-eslint/no-unused-vars": "off", "no-console": "off" } }