Upgrade to eslint v6.0.0

(closes #6567)
This commit is contained in:
Bryan Housel
2019-06-29 11:35:57 -04:00
parent 8f69939a81
commit 392a242c02
3 changed files with 5 additions and 4 deletions

View File

@@ -43,6 +43,7 @@
"no-octal-escape": "error",
"no-process-env": "error",
"no-proto": "error",
"no-prototype-builtins": "off",
"no-return-assign": "off",
"no-script-url": "error",
"no-self-compare": "error",

View File

@@ -65,7 +65,7 @@
"concat-files": "^0.1.1",
"d3": "~5.9.2",
"editor-layer-index": "github:osmlab/editor-layer-index#gh-pages",
"eslint": "^5.16.0",
"eslint": "^6.0.0",
"gaze": "^1.1.1",
"glob": "^7.1.0",
"happen": "^0.3.1",

View File

@@ -284,7 +284,7 @@ describe('iD.serviceOsm', function () {
window.setTimeout(function() {
expect(spy).to.have.been.calledOnce;
done();
}, 50);
}, 500);
});
it('#isDataLoaded', function(done) {
@@ -298,7 +298,7 @@ describe('iD.serviceOsm', function () {
window.setTimeout(function() {
expect(connection.isDataLoaded([-74.0444216, 40.6694299])).to.be.ok;
done();
}, 50);
}, 500);
});
});
@@ -609,7 +609,7 @@ describe('iD.serviceOsm', function () {
window.setTimeout(function() {
expect(spy).to.have.been.calledOnce;
done();
}, 50);
}, 500);
});
});