Skip to content

Commit f341bef

Browse files
committed
lint
1 parent af0bfe4 commit f341bef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/compiler/compile/css/Stylesheet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ export default class Stylesheet {
269269

270270
this.has_styles = true;
271271

272-
const stack: Array<Atrule> = [];
272+
const stack: Atrule[] = [];
273273
let depth = 0;
274274
let current_atrule: Atrule = null;
275275

src/compiler/compile/render_dom/wrappers/shared/bind_this.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default function bind_this(component: Component, block: Block, binding: B
3636
: deindent`
3737
${lhs} = $$value;
3838
${component.invalidate(object)};
39-
`
39+
`;
4040
}
4141

4242
const contextual_dependencies = Array.from(binding.expression.contextual_dependencies);

0 commit comments

Comments
 (0)