Fix remaining lint errors (#19166)

This commit is contained in:
Andy
2017-08-20 15:37:53 -07:00
committed by GitHub
parent 83230ae14e
commit 924fafffc0
861 changed files with 2641 additions and 2198 deletions

View File

@@ -148,7 +148,7 @@ function makeApiCall() {
}).then((resp) => {
const p = document.createElement('p');
const name = resp.result.names[0].givenName;
p.appendChild(document.createTextNode('Hello, ' + name + '!'));
p.appendChild(document.createTextNode(`Hello, ${name}!`));
document.getElementById('content').appendChild(p);
});
}

View File

@@ -3,6 +3,8 @@
"rules": {
"indent": {
"options": [true, "spaces", 2]
}
},
// TODO
"no-mergeable-namespace": false
}
}