Bypass Linter Rule

This commit is contained in:
Josh Johnson 2020-07-06 22:06:42 -04:00
parent 14dbb32d7b
commit 1a2477fd19

View File

@ -23,6 +23,7 @@ export function textToXml(textEditor: TextEditor): void {
.replace(/&lt;/g, "<")
.replace(/&gt;/g, ">")
.replace(/&amp;/g, "&")
// tslint:disable-next-line
.replace(/&quot;/g, '"')
.replace(/&apos;/g, "'");