Apply new lint rules to yet more packages (#15548)

* Apply new lint rules to yet more packages

* Fix leaflet lint
This commit is contained in:
Andy
2017-03-31 11:01:26 -07:00
committed by GitHub
parent 2aa40c2ca7
commit b6c343f2b3
114 changed files with 1727 additions and 1678 deletions

View File

@@ -7,7 +7,7 @@ isArray(true);
isArray([]);
isArray({});
var x = {};
const x = {};
if (isArray(x)) {
x.push(0);
}