From eea53444a726c10853595d0865dd7204145033b7 Mon Sep 17 00:00:00 2001 From: 43081j <43081j@users.noreply.github.com> Date: Thu, 6 Jun 2019 19:07:12 +0100 Subject: [PATCH] reintroduce scissors unicode again --- src/compiler/compile/render-dom/index.ts | 2 +- test/.eslintrc.json | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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" } }