fix lint issues

This commit is contained in:
amitm02
2018-07-25 09:47:09 +03:00
parent c9b66bf77b
commit 0e14b2d2e3
4 changed files with 4 additions and 4 deletions

View File

@ -4,4 +4,4 @@ export class Bidi extends XmlComponent {
constructor() { constructor() {
super("w:bidi"); super("w:bidi");
} }
} }

View File

@ -5,6 +5,7 @@ import { Num } from "file/numbering/num";
import { XmlComponent } from "file/xml-components"; import { XmlComponent } from "file/xml-components";
import { Alignment } from "./formatting/alignment"; import { Alignment } from "./formatting/alignment";
import { Bidi } from "./formatting/bidi";
import { ThematicBreak } from "./formatting/border"; import { ThematicBreak } from "./formatting/border";
import { Indent } from "./formatting/indent"; import { Indent } from "./formatting/indent";
import { KeepLines, KeepNext } from "./formatting/keep"; import { KeepLines, KeepNext } from "./formatting/keep";
@ -13,7 +14,6 @@ import { ISpacingProperties, Spacing } from "./formatting/spacing";
import { Style } from "./formatting/style"; import { Style } from "./formatting/style";
import { CenterTabStop, LeftTabStop, MaxRightTabStop, RightTabStop } from "./formatting/tab-stop"; import { CenterTabStop, LeftTabStop, MaxRightTabStop, RightTabStop } from "./formatting/tab-stop";
import { NumberProperties } from "./formatting/unordered-list"; import { NumberProperties } from "./formatting/unordered-list";
import { Bidi} from "./formatting/bidi"
import { Bookmark, Hyperlink } from "./links"; import { Bookmark, Hyperlink } from "./links";
import { ParagraphProperties } from "./properties"; import { ParagraphProperties } from "./properties";
import { PictureRun, Run, TextRun } from "./run"; import { PictureRun, Run, TextRun } from "./run";

View File

@ -133,4 +133,4 @@ export class RTL extends XmlComponent {
}), }),
); );
} }
} }

View File

@ -1,7 +1,7 @@
// http://officeopenxml.com/WPtext.php // http://officeopenxml.com/WPtext.php
import { Break } from "./break"; import { Break } from "./break";
import { Caps, SmallCaps } from "./caps"; import { Caps, SmallCaps } from "./caps";
import { Bold, Color, DoubleStrike, Italics, Size, RTL, Strike } from "./formatting"; import { Bold, Color, DoubleStrike, Italics, RTL, Size, Strike } from "./formatting";
import { Begin, End, Page, Separate } from "./page-number"; import { Begin, End, Page, Separate } from "./page-number";
import { RunProperties } from "./properties"; import { RunProperties } from "./properties";
import { RunFonts } from "./run-fonts"; import { RunFonts } from "./run-fonts";