From 00e680d2b48063ecdc7ab4457c4d55a76f8e8829 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 9 Apr 2026 20:09:29 +0000 Subject: [PATCH] chore(deps): update dependency eslint-plugin-simple-import-sort to v13 (#2856) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [eslint-plugin-simple-import-sort](https://github.com/lydell/eslint-plugin-simple-import-sort) | [`12.1.1` β†’ `13.0.0`](https://renovatebot.com/diffs/npm/eslint-plugin-simple-import-sort/12.1.1/13.0.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-simple-import-sort/13.0.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-simple-import-sort/12.1.1/13.0.0?slim=true) | --- ### Release Notes
lydell/eslint-plugin-simple-import-sort (eslint-plugin-simple-import-sort) ### [`v13.0.0`](https://github.com/lydell/eslint-plugin-simple-import-sort/blob/HEAD/CHANGELOG.md#Version-1300-2026-04-06) [Compare Source](https://github.com/lydell/eslint-plugin-simple-import-sort/compare/v12.1.1...v13.0.0) This release puts imports from the same source, but with different import styles, in a deterministic order. ```js // First namespace imports: import * as Circle from "circle; // Then default imports: import createCircle from "circle"; // Then named imports: import { radius } from "circle"; ``` That is especially useful if you need to have both a namespace import *and* want to import a few things separately (since that cannot be combined into a single import statement). With the above rule, the imports end up in a deterministic order. It’s only a breaking change if you import from the same source multiple times in the same file (using different styles), and only in the form that you need to autofix your files. Thanks to Kannan Goundan ([@​cakoose](https://github.com/cakoose))!
--- ### Configuration πŸ“… **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://gitea.unbound.se/dancefinder/dancefinder-app/pulls/2856 Co-authored-by: Renovate Bot Co-committed-by: Renovate 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 dc94918..567dd78 100644 --- a/package-lock.json +++ b/package-lock.json @@ -38,7 +38,7 @@ "@vue/test-utils": "2.4.6", "esbuild": "0.28.0", "eslint": "10.2.0", - "eslint-plugin-simple-import-sort": "12.1.1", + "eslint-plugin-simple-import-sort": "13.0.0", "eslint-plugin-vue": "10.8.0", "nuxt": "4.4.2", "postcss-html": "1.8.1", @@ -12099,9 +12099,9 @@ } }, "node_modules/eslint-plugin-simple-import-sort": { - "version": "12.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-12.1.1.tgz", - "integrity": "sha512-6nuzu4xwQtE3332Uz0to+TxDQYRLTKRESSc2hefVT48Zc8JthmN23Gx9lnYhu0FtkRSL1oxny3kJ2aveVhmOVA==", + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-13.0.0.tgz", + "integrity": "sha512-McAc+/Nlvcg4byY/CABGH8kqnefWBj8s3JA2okEtz8ixbECQgU46p0HkTUKa4YS7wvgGceimlc34p1nXqbWqtA==", "dev": true, "license": "MIT", "peerDependencies": { diff --git a/package.json b/package.json index 7c45ea6..8d25c69 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "@vue/test-utils": "2.4.6", "esbuild": "0.28.0", "eslint": "10.2.0", - "eslint-plugin-simple-import-sort": "12.1.1", + "eslint-plugin-simple-import-sort": "13.0.0", "eslint-plugin-vue": "10.8.0", "nuxt": "4.4.2", "postcss-html": "1.8.1",