chore(tslint): update tslint rules and fix errors (#5747)

* chore(tslint): fix tslint config & errors
* chore(tslint): enable double quotes, whitespace, and arrow-return-shorthand rules and fix errors
This commit is contained in:
Manol Donev
2018-04-26 18:36:32 +03:00
committed by GitHub
parent a767c8efd4
commit 03cfc0cee3
152 changed files with 2198 additions and 2185 deletions

View File

@@ -4,7 +4,7 @@ import { getNodeById } from "./dom-node";
import { ViewBase } from "../ui/core/view-base";
// Use lazy requires for core modules
const frameTopmost = () => { return require("../ui/frame").topmost(); };
const frameTopmost = () => require("../ui/frame").topmost();
let unsetValue;
function unsetViewValue(view, name) {
@@ -76,7 +76,7 @@ export function setAttributeAsText(nodeId, text, name) {
if (textParts.length === 2) {
let attrName = textParts[0];
let attrValue = textParts[1].replace(/['"]+/g, '');
let attrValue = textParts[1].replace(/['"]+/g, "");
// if attr name is being replaced with another
if (name !== attrName && hasOriginalAttribute) {