From ae70c2dfde2268f53f99714f5e560f0367b7fcd4 Mon Sep 17 00:00:00 2001 From: felipe Date: Wed, 8 Mar 2017 17:15:46 +0100 Subject: [PATCH] fix numbering/indent.ts linter warnings --- ts/numbering/indent.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ts/numbering/indent.ts b/ts/numbering/indent.ts index 05477f5d20..38163fe812 100644 --- a/ts/numbering/indent.ts +++ b/ts/numbering/indent.ts @@ -1,4 +1,4 @@ -import {XmlComponent, XmlAttributeComponent} from "../docx/xml-components"; +import {XmlAttributeComponent, XmlComponent} from "../docx/xml-components"; interface IndentAttributesProperties { left: number; @@ -10,7 +10,7 @@ class IndentAttributes extends XmlAttributeComponent { constructor(properties: IndentAttributesProperties) { super({ left: "w:left", - hanging: "w:hanging" + hanging: "w:hanging", }, properties); } } @@ -21,7 +21,7 @@ export class Indent extends XmlComponent { super("w:ind"); this.root.push(new IndentAttributes({ left: left, - hanging: hanging + hanging: hanging, })); } -} \ No newline at end of file +}