Fixed tslint errors

This commit is contained in:
Eliasib García 2018-12-13 19:13:15 +00:00
parent 51b6b4fbaa
commit d753e957a0
2 changed files with 18 additions and 18 deletions

View File

@ -1,5 +1,5 @@
import { workspace } from "vscode"; import { workspace } from "vscode";
import { ProviderResult, Range, TextEdit, editor, editorEdit, Selection } from "vscode"; import { ProviderResult, Range, TextEdit, TextEditor, Selection } from "vscode";
import { NativeCommands } from "../../common"; import { NativeCommands } from "../../common";
import * as constants from "../../constants"; import * as constants from "../../constants";
@ -8,19 +8,19 @@ import { XmlFormatterFactory } from "../xml-formatter";
import { XmlFormattingEditProvider } from "../xml-formatting-edit-provider"; import { XmlFormattingEditProvider } from "../xml-formatting-edit-provider";
import { XmlFormattingOptionsFactory } from "../xml-formatting-options"; import { XmlFormattingOptionsFactory } from "../xml-formatting-options";
export function textToXml(editor: editor, edit: editorEdit): void { export function textToXml(textEditor: TextEditor): void {
editor.edit(edit => { textEditor.edit(textEdit => {
let selections = editor.selections; const selections = textEditor.selections;
selections.forEach(selection => { selections.forEach(selection => {
if (selection.isEmpty) { if (selection.isEmpty) {
selection = new Selection( selection = new Selection(
editor.document.positionAt(0), textEditor.document.positionAt(0),
editor.document.positionAt(editor.document.getText().length) textEditor.document.positionAt(textEditor.document.getText().length)
); );
} }
let txt = editor.document.getText(new Range(selection.start, selection.end)); const txt = textEditor.document.getText(new Range(selection.start, selection.end));
let transformed = txt.replace(/&lt;/g, '<').replace(/&gt;/g, '>'); const transformed = txt.replace(/&lt;/g, "<").replace(/&gt;/g, ">");
edit.replace(selection, transformed); textEdit.replace(selection, transformed);
}); });
}); });
} }

View File

@ -1,5 +1,5 @@
import { workspace } from "vscode"; import { workspace } from "vscode";
import { ProviderResult, Range, TextEdit, editor, editorEdit, Selection } from "vscode"; import { ProviderResult, Range, TextEdit, TextEditor, Selection } from "vscode";
import { NativeCommands } from "../../common"; import { NativeCommands } from "../../common";
import * as constants from "../../constants"; import * as constants from "../../constants";
@ -8,19 +8,19 @@ import { XmlFormatterFactory } from "../xml-formatter";
import { XmlFormattingEditProvider } from "../xml-formatting-edit-provider"; import { XmlFormattingEditProvider } from "../xml-formatting-edit-provider";
import { XmlFormattingOptionsFactory } from "../xml-formatting-options"; import { XmlFormattingOptionsFactory } from "../xml-formatting-options";
export function xmlToText(editor: editor, edit: editorEdit): void { export function xmlToText(textEditor: TextEditor): void {
editor.edit(edit => { textEditor.edit(textEdit => {
let selections = editor.selections; const selections = textEditor.selections;
selections.forEach(selection => { selections.forEach(selection => {
if (selection.isEmpty) { if (selection.isEmpty) {
selection = new Selection( selection = new Selection(
editor.document.positionAt(0), textEditor.document.positionAt(0),
editor.document.positionAt(editor.document.getText().length) textEditor.document.positionAt(textEditor.document.getText().length)
); );
} }
let txt = editor.document.getText(new Range(selection.start, selection.end)); const txt = textEditor.document.getText(new Range(selection.start, selection.end));
let transformed = txt.replace(/</g, '&lt;').replace(/>/g, '&gt;'); const transformed = txt.replace(/</g, "&lt;").replace(/>/g, "&gt;");
edit.replace(selection, transformed); textEdit.replace(selection, transformed);
}); });
}); });
} }