From cbc3d1244c40109f8489c0a19e340a9b762f6392 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 11:27:27 +0000 Subject: [PATCH 1/2] Bump eslint-config-google from 0.13.0 to 0.14.0 Bumps [eslint-config-google](https://github.com/google/eslint-config-google) from 0.13.0 to 0.14.0. - [Release notes](https://github.com/google/eslint-config-google/releases) - [Commits](https://github.com/google/eslint-config-google/compare/0.13.0...0.14.0) --- updated-dependencies: - dependency-name: eslint-config-google dependency-version: 0.14.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 799d0e5..521b483 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "chai": "^4.2.0", "coveralls": "^3.0.7", "eslint": "^10.5.0", - "eslint-config-google": "^0.13.0", + "eslint-config-google": "^0.14.0", "mocha": "^11.7.6", "mongodb3": "npm:mongodb@^3.0.0", "mongodb4": "npm:mongodb@^4.0.0", From ab6f944b4612f779bcc3ad9f4923e0b1b63adedc Mon Sep 17 00:00:00 2001 From: Alec Gibson <12036746+alecgibson@users.noreply.github.com> Date: Mon, 29 Jun 2026 12:33:51 +0100 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=9A=A8=20Place=20`&&`=20operators=20a?= =?UTF-8?q?t=20the=20end=20of=20the=20line?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- op-link-validator.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/op-link-validator.js b/op-link-validator.js index 72427fc..24f7320 100644 --- a/op-link-validator.js +++ b/op-link-validator.js @@ -58,9 +58,9 @@ OpLinkValidator.prototype.isAtEndOfList = function() { OpLinkValidator.prototype._previousVersionWasUnique = function() { var previousVersion = this._previousVersion(); - return typeof previousVersion === 'number' - && previousVersion !== this._currentVersion() - && previousVersion !== this._oneBeforePreviousVersion(); + return typeof previousVersion === 'number' && + previousVersion !== this._currentVersion() && + previousVersion !== this._oneBeforePreviousVersion(); }; OpLinkValidator.prototype._currentVersion = function() {