From d753e957a09abe1a77b076b8416b187b9b878372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eliasib=20Garc=C3=ADa?= Date: Thu, 13 Dec 2018 19:13:15 +0000 Subject: [PATCH] Fixed tslint errors --- src/formatting/commands/textToXml.ts | 18 +++++++++--------- src/formatting/commands/xmlToText.ts | 18 +++++++++--------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/formatting/commands/textToXml.ts b/src/formatting/commands/textToXml.ts index d80d475..de2884f 100644 --- a/src/formatting/commands/textToXml.ts +++ b/src/formatting/commands/textToXml.ts @@ -1,5 +1,5 @@ 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 * as constants from "../../constants"; @@ -8,19 +8,19 @@ import { XmlFormatterFactory } from "../xml-formatter"; import { XmlFormattingEditProvider } from "../xml-formatting-edit-provider"; import { XmlFormattingOptionsFactory } from "../xml-formatting-options"; -export function textToXml(editor: editor, edit: editorEdit): void { - editor.edit(edit => { - let selections = editor.selections; +export function textToXml(textEditor: TextEditor): void { + textEditor.edit(textEdit => { + const selections = textEditor.selections; selections.forEach(selection => { if (selection.isEmpty) { selection = new Selection( - editor.document.positionAt(0), - editor.document.positionAt(editor.document.getText().length) + textEditor.document.positionAt(0), + textEditor.document.positionAt(textEditor.document.getText().length) ); } - let txt = editor.document.getText(new Range(selection.start, selection.end)); - let transformed = txt.replace(/</g, '<').replace(/>/g, '>'); - edit.replace(selection, transformed); + const txt = textEditor.document.getText(new Range(selection.start, selection.end)); + const transformed = txt.replace(/</g, "<").replace(/>/g, ">"); + textEdit.replace(selection, transformed); }); }); } diff --git a/src/formatting/commands/xmlToText.ts b/src/formatting/commands/xmlToText.ts index f58bf03..f3d63ac 100644 --- a/src/formatting/commands/xmlToText.ts +++ b/src/formatting/commands/xmlToText.ts @@ -1,5 +1,5 @@ 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 * as constants from "../../constants"; @@ -8,19 +8,19 @@ import { XmlFormatterFactory } from "../xml-formatter"; import { XmlFormattingEditProvider } from "../xml-formatting-edit-provider"; import { XmlFormattingOptionsFactory } from "../xml-formatting-options"; -export function xmlToText(editor: editor, edit: editorEdit): void { - editor.edit(edit => { - let selections = editor.selections; +export function xmlToText(textEditor: TextEditor): void { + textEditor.edit(textEdit => { + const selections = textEditor.selections; selections.forEach(selection => { if (selection.isEmpty) { selection = new Selection( - editor.document.positionAt(0), - editor.document.positionAt(editor.document.getText().length) + textEditor.document.positionAt(0), + textEditor.document.positionAt(textEditor.document.getText().length) ); } - let txt = editor.document.getText(new Range(selection.start, selection.end)); - let transformed = txt.replace(//g, '>'); - edit.replace(selection, transformed); + const txt = textEditor.document.getText(new Range(selection.start, selection.end)); + const transformed = txt.replace(//g, ">"); + textEdit.replace(selection, transformed); }); }); }