From 9472a2a970613bcf1ba2a5a87e5b2a4d9d3fb6c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 07:02:31 +0000 Subject: [PATCH 1/2] chore(deps-dev): bump eslint-plugin-unicorn in the eslint group Bumps the eslint group with 1 update: [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn). Updates `eslint-plugin-unicorn` from 72.0.0 to 73.0.0 - [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases) - [Commits](https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v72.0.0...v73.0.0) --- updated-dependencies: - dependency-name: eslint-plugin-unicorn dependency-version: 73.0.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: eslint ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5e077d9..99830a8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "eslint": "^10.8.1", "eslint-config-prettier": "^10.1.8", "eslint-plugin-import-x": "^4.17.1", - "eslint-plugin-unicorn": "^72.0.0", + "eslint-plugin-unicorn": "^73.0.0", "globals": "^17.9.0", "prettier": "^3.9.6" }, @@ -1235,9 +1235,9 @@ } }, "node_modules/eslint-plugin-unicorn": { - "version": "72.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-72.0.0.tgz", - "integrity": "sha512-hqO6ksoOHO+ZhdseTuKRVQbx9U7PRO/cv8qAR1mctwzdVO2hYud8uS9luAhp43RJgziYgHAph8eHyipT8GL0ng==", + "version": "73.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-73.0.0.tgz", + "integrity": "sha512-V0YatLe9nkGhXEXKe2Qljb1EY0sJHwDV0HUF1NKFwtsHh/fU7qGHDgv+6fchzZcgU2/7noHo2gdjnmo0P2uDPw==", "dev": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 15601e1..fb89bf7 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "eslint": "^10.8.1", "eslint-config-prettier": "^10.1.8", "eslint-plugin-import-x": "^4.17.1", - "eslint-plugin-unicorn": "^72.0.0", + "eslint-plugin-unicorn": "^73.0.0", "globals": "^17.9.0", "prettier": "^3.9.6" } From 98798da5899718370a5fdc3a2ad82a460dca40ec Mon Sep 17 00:00:00 2001 From: Julian Krenge Date: Mon, 24 Aug 2026 11:37:45 -0400 Subject: [PATCH 2/2] chore: preserve single-line block comments --- eslint.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/eslint.config.mjs b/eslint.config.mjs index 5c1432b..63996d6 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -40,6 +40,7 @@ export default [ 'unicorn/prefer-spread': 'off', 'unicorn/prefer-top-level-await': 'off', 'unicorn/prevent-abbreviations': 'off', + 'unicorn/single-line-block-comment-style': ['error', 'single-line'], 'prefer-const': 'error', 'unicorn/prefer-module': 'off',