chore(deps): update dependency eslint-plugin-svelte to v3 #541

Merged
nemunaire merged 1 commits from renovate/eslint-plugin-svelte-3.x into master 2025-03-28 08:25:59 +00:00
Collaborator

This PR contains the following updates:

Package Type Update Change
eslint-plugin-svelte (source) devDependencies major ^2.35.1 -> ^3.0.0

Release Notes

sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)

v3.3.3

Compare Source

Patch Changes

v3.3.2

Compare Source

Patch Changes

v3.3.1

Compare Source

Patch Changes

v3.3.0

Compare Source

Minor Changes
  • #​1132 30c1e5f Thanks @​baseballyama! - feat: add ignorePropertyPatterns property and rename ignorePatterns to ignoreTypePatterns in no-unused-props rule. The ignorePatterns option existed only for a few hours and is removed by this PR. Technically, this is a breaking change, but we’ll handle it as a minor release since very few users are likely affected.

v3.2.2

Compare Source

Patch Changes

v3.2.1

Compare Source

Patch Changes

v3.2.0

Compare Source

Minor Changes

v3.1.0

Compare Source

Minor Changes
Patch Changes

v3.0.3

Compare Source

Patch Changes

v3.0.2

Compare Source

Patch Changes

v3.0.1

Compare Source

Patch Changes

v3.0.0

Compare Source

Major Changes
  • We have changed versioning policy, please see the README for details.

  • #​937 729394e Thanks @​ota-meshi! - feat!: drop support for old eslint

  • #​1033 3bfcc31 Thanks @​baseballyama! - Enabled in recommended config:

    • svelte/infinite-reactive-loop
    • svelte/no-dom-manipulating
    • svelte/no-dupe-on-directives
    • svelte/no-dupe-use-directives
    • svelte/no-export-load-in-svelte-module-in-kit-pages
    • svelte/no-immutable-reactive-statements
    • svelte/no-inspect
    • svelte/no-raw-special-elements
    • svelte/no-reactive-functions
    • svelte/no-reactive-literals
    • svelte/no-reactive-reassign
    • svelte/no-store-async
    • svelte/no-svelte-internal
    • svelte/no-useless-children-snippet
    • svelte/no-useless-mustaches
    • svelte/require-each-key
    • svelte/require-event-dispatcher-types
    • svelte/require-store-reactive-access
    • svelte/require-stores-init
    • svelte/valid-each-key
    • svelte/valid-prop-names-in-kit-pages

    Removed from recommended config:

    • svelte/valid-compile

    This update introduces breaking changes due to newly enabled rules.

  • #​1086 1c679b5 Thanks @​baseballyama! - breaking: remove require-stores-init from recommended rules

  • #​1043 778427e Thanks @​ota-meshi! - feat: add *.svelte.{js,ts} config to base config

  • #​900 4759b47 Thanks @​marekdedic! - breaking: deprecated the no-goto-without-base rule

  • #​885 ce2ffad Thanks @​ota-meshi! - feat!: drop support for old node versions (<18, 19, 21)

  • #​1011 7596287 Thanks @​baseballyama! - breaking: deprecate the svelte/no-dynamic-slot-name rule

  • #​930 eae1b4f Thanks @​ota-meshi! - feat!: upgrade svelte-eslint-parser to v1

  • #​982 04fc429 Thanks @​baseballyama! - feat!: Updated the html-self-closing rule to follow Svelte5

  • #​932 b136ab4 Thanks @​ota-meshi! - feat!: change the plugin to an ESM-only package

Minor Changes
Patch Changes

Configuration

📅 Schedule: 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.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [eslint-plugin-svelte](https://sveltejs.github.io/eslint-plugin-svelte) ([source](https://github.com/sveltejs/eslint-plugin-svelte)) | devDependencies | major | [`^2.35.1` -> `^3.0.0`](https://renovatebot.com/diffs/npm/eslint-plugin-svelte/2.46.1/3.3.3) | --- ### Release Notes <details> <summary>sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)</summary> ### [`v3.3.3`](https://github.com/sveltejs/eslint-plugin-svelte/releases/tag/eslint-plugin-svelte%403.3.3) [Compare Source](https://github.com/sveltejs/eslint-plugin-svelte/compare/eslint-plugin-svelte@3.3.2...eslint-plugin-svelte@3.3.3) ##### Patch Changes - [#&#8203;1146](https://github.com/sveltejs/eslint-plugin-svelte/pull/1146) [`1233e46`](https://github.com/sveltejs/eslint-plugin-svelte/commit/1233e46413132c1e81dc69981be1533c5e6c6a4d) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - fix(no-unused-props): resolve false positives on props with default values or $bindable usage ### [`v3.3.2`](https://github.com/sveltejs/eslint-plugin-svelte/releases/tag/eslint-plugin-svelte%403.3.2) [Compare Source](https://github.com/sveltejs/eslint-plugin-svelte/compare/eslint-plugin-svelte@3.3.1...eslint-plugin-svelte@3.3.2) ##### Patch Changes - [#&#8203;1143](https://github.com/sveltejs/eslint-plugin-svelte/pull/1143) [`138380d`](https://github.com/sveltejs/eslint-plugin-svelte/commit/138380deeec2ccd0189b70abf7d9a2cd6b608338) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - fix: stop reporting child properties in `no-unused-props` when the parent object itself is used ### [`v3.3.1`](https://github.com/sveltejs/eslint-plugin-svelte/releases/tag/eslint-plugin-svelte%403.3.1) [Compare Source](https://github.com/sveltejs/eslint-plugin-svelte/compare/eslint-plugin-svelte@3.3.0...eslint-plugin-svelte@3.3.1) ##### Patch Changes - [#&#8203;1140](https://github.com/sveltejs/eslint-plugin-svelte/pull/1140) [`40806a4`](https://github.com/sveltejs/eslint-plugin-svelte/commit/40806a4b6342a7f2d1bd40d65df8dec5af666e1a) Thanks [@&#8203;ota-meshi](https://github.com/ota-meshi)! - fix(no-useless-mustaches): Wrong auto-fix for quoted mustaches ### [`v3.3.0`](https://github.com/sveltejs/eslint-plugin-svelte/releases/tag/eslint-plugin-svelte%403.3.0) [Compare Source](https://github.com/sveltejs/eslint-plugin-svelte/compare/eslint-plugin-svelte@3.2.2...eslint-plugin-svelte@3.3.0) ##### Minor Changes - [#&#8203;1132](https://github.com/sveltejs/eslint-plugin-svelte/pull/1132) [`30c1e5f`](https://github.com/sveltejs/eslint-plugin-svelte/commit/30c1e5fc6517cec7171ca42327699c3ad9ab6580) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - feat: add `ignorePropertyPatterns` property and rename `ignorePatterns` to `ignoreTypePatterns` in `no-unused-props` rule. The `ignorePatterns` option existed only for a few hours and is removed by this PR. Technically, this is a breaking change, but we’ll handle it as a minor release since very few users are likely affected. ### [`v3.2.2`](https://github.com/sveltejs/eslint-plugin-svelte/releases/tag/eslint-plugin-svelte%403.2.2) [Compare Source](https://github.com/sveltejs/eslint-plugin-svelte/compare/eslint-plugin-svelte@3.2.1...eslint-plugin-svelte@3.2.2) ##### Patch Changes - [#&#8203;1135](https://github.com/sveltejs/eslint-plugin-svelte/pull/1135) [`1ff148a`](https://github.com/sveltejs/eslint-plugin-svelte/commit/1ff148a0bb24954aef59ce93b05a35913d83f2ee) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - fix: correct detection of externally defined types in `no-unused-props` rule ### [`v3.2.1`](https://github.com/sveltejs/eslint-plugin-svelte/releases/tag/eslint-plugin-svelte%403.2.1) [Compare Source](https://github.com/sveltejs/eslint-plugin-svelte/compare/eslint-plugin-svelte@3.2.0...eslint-plugin-svelte@3.2.1) ##### Patch Changes - [#&#8203;1128](https://github.com/sveltejs/eslint-plugin-svelte/pull/1128) [`e94b59a`](https://github.com/sveltejs/eslint-plugin-svelte/commit/e94b59a35c914d868f89dd300b8d6b8090054976) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - fix: resolve false positives on nested objects in `no-unused-props` rule ### [`v3.2.0`](https://github.com/sveltejs/eslint-plugin-svelte/releases/tag/eslint-plugin-svelte%403.2.0) [Compare Source](https://github.com/sveltejs/eslint-plugin-svelte/compare/eslint-plugin-svelte@3.1.0...eslint-plugin-svelte@3.2.0) ##### Minor Changes - [#&#8203;1062](https://github.com/sveltejs/eslint-plugin-svelte/pull/1062) [`a4d3b29`](https://github.com/sveltejs/eslint-plugin-svelte/commit/a4d3b295583309bd8fcde846d1a1daa612d4d56a) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - feat: add `no-unnecessary-state-wrap` rule - [#&#8203;1061](https://github.com/sveltejs/eslint-plugin-svelte/pull/1061) [`268a372`](https://github.com/sveltejs/eslint-plugin-svelte/commit/268a3727e17c4bcb1906cc6901667a1272d2a191) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - feat: add `no-unused-props` rule ### [`v3.1.0`](https://github.com/sveltejs/eslint-plugin-svelte/releases/tag/eslint-plugin-svelte%403.1.0) [Compare Source](https://github.com/sveltejs/eslint-plugin-svelte/compare/eslint-plugin-svelte@3.0.3...eslint-plugin-svelte@3.1.0) ##### Minor Changes - [#&#8203;1064](https://github.com/sveltejs/eslint-plugin-svelte/pull/1064) [`df1647f`](https://github.com/sveltejs/eslint-plugin-svelte/commit/df1647f64c3abeffc46523a85ea8ea08cc5b4c85) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - feat: add `excludedRunes` option to the `prefer-const` rule ##### Patch Changes - [#&#8203;1126](https://github.com/sveltejs/eslint-plugin-svelte/pull/1126) [`9b76b46`](https://github.com/sveltejs/eslint-plugin-svelte/commit/9b76b46e8637baff1bda0039edeacd647637993c) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - fix: check property key instead of value in `valid-prop-names-in-kit-pages` rule - [#&#8203;1125](https://github.com/sveltejs/eslint-plugin-svelte/pull/1125) [`0a03362`](https://github.com/sveltejs/eslint-plugin-svelte/commit/0a0336267a41885871a181ed00454929bc2d79da) Thanks [@&#8203;ota-meshi](https://github.com/ota-meshi)! - fix: support windows path delimiter - [#&#8203;1108](https://github.com/sveltejs/eslint-plugin-svelte/pull/1108) [`976e4f0`](https://github.com/sveltejs/eslint-plugin-svelte/commit/976e4f0b5047f70b737e898743187afff88fea56) Thanks [@&#8203;marekdedic](https://github.com/marekdedic)! - fix(consistent-selector-style): not reporting class selectors used in class directives - [#&#8203;1107](https://github.com/sveltejs/eslint-plugin-svelte/pull/1107) [`3b01537`](https://github.com/sveltejs/eslint-plugin-svelte/commit/3b015374eb80d08a914321b36da36ccc9eac730f) Thanks [@&#8203;marekdedic](https://github.com/marekdedic)! - fix(no-navigation-without-base): ignoring fragment links ### [`v3.0.3`](https://github.com/sveltejs/eslint-plugin-svelte/releases/tag/eslint-plugin-svelte%403.0.3) [Compare Source](https://github.com/sveltejs/eslint-plugin-svelte/compare/eslint-plugin-svelte@3.0.2...eslint-plugin-svelte@3.0.3) ##### Patch Changes - [#&#8203;1115](https://github.com/sveltejs/eslint-plugin-svelte/pull/1115) [`7f756b8`](https://github.com/sveltejs/eslint-plugin-svelte/commit/7f756b8535818008742eead569ebf03065db776b) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - fix: align required Node version with ESLint ### [`v3.0.2`](https://github.com/sveltejs/eslint-plugin-svelte/releases/tag/eslint-plugin-svelte%403.0.2) [Compare Source](https://github.com/sveltejs/eslint-plugin-svelte/compare/eslint-plugin-svelte@3.0.1...eslint-plugin-svelte@3.0.2) ##### Patch Changes - [#&#8203;1100](https://github.com/sveltejs/eslint-plugin-svelte/pull/1100) [`1358d89`](https://github.com/sveltejs/eslint-plugin-svelte/commit/1358d89206e9cf57faf5789d246ed99489f1685b) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - fix: handle `<script module>` in `valid-prop-names-in-kit-pages` rule ### [`v3.0.1`](https://github.com/sveltejs/eslint-plugin-svelte/releases/tag/eslint-plugin-svelte%403.0.1) [Compare Source](https://github.com/sveltejs/eslint-plugin-svelte/compare/eslint-plugin-svelte@3.0.0...eslint-plugin-svelte@3.0.1) ##### Patch Changes - [#&#8203;1091](https://github.com/sveltejs/eslint-plugin-svelte/pull/1091) [`83da078`](https://github.com/sveltejs/eslint-plugin-svelte/commit/83da0784e93fe148579de6fcd665ed94da76411d) Thanks [@&#8203;ottomated](https://github.com/ottomated)! - fix: Don't remove mustache'd string literals if they contain curly braces ### [`v3.0.0`](https://github.com/sveltejs/eslint-plugin-svelte/releases/tag/eslint-plugin-svelte%403.0.0) [Compare Source](https://github.com/sveltejs/eslint-plugin-svelte/compare/v2.46.1...eslint-plugin-svelte@3.0.0) ##### Major Changes - We have changed versioning policy, please see the [README](https://github.com/sveltejs/eslint-plugin-svelte/blob/eslint-plugin-svelte%403.0.2/README.md#versioning-policy) for details. - [#&#8203;937](https://github.com/sveltejs/eslint-plugin-svelte/pull/937) [`729394e`](https://github.com/sveltejs/eslint-plugin-svelte/commit/729394e34d2d6f51e00c89b67a40d0f9192260b4) Thanks [@&#8203;ota-meshi](https://github.com/ota-meshi)! - feat!: drop support for old eslint - [#&#8203;1033](https://github.com/sveltejs/eslint-plugin-svelte/pull/1033) [`3bfcc31`](https://github.com/sveltejs/eslint-plugin-svelte/commit/3bfcc31e0f2d127c7a1cb838c4c57125c30109ea) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - **Enabled in recommended config**: - `svelte/infinite-reactive-loop` - `svelte/no-dom-manipulating` - `svelte/no-dupe-on-directives` - `svelte/no-dupe-use-directives` - `svelte/no-export-load-in-svelte-module-in-kit-pages` - `svelte/no-immutable-reactive-statements` - `svelte/no-inspect` - `svelte/no-raw-special-elements` - `svelte/no-reactive-functions` - `svelte/no-reactive-literals` - `svelte/no-reactive-reassign` - `svelte/no-store-async` - `svelte/no-svelte-internal` - `svelte/no-useless-children-snippet` - `svelte/no-useless-mustaches` - `svelte/require-each-key` - `svelte/require-event-dispatcher-types` - `svelte/require-store-reactive-access` - `svelte/require-stores-init` - `svelte/valid-each-key` - `svelte/valid-prop-names-in-kit-pages` **Removed from recommended config**: - `svelte/valid-compile` This update introduces breaking changes due to newly enabled rules. - [#&#8203;1086](https://github.com/sveltejs/eslint-plugin-svelte/pull/1086) [`1c679b5`](https://github.com/sveltejs/eslint-plugin-svelte/commit/1c679b50f310040257b89e4e03d3a88764fd7b28) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - breaking: remove `require-stores-init` from recommended rules - [#&#8203;1043](https://github.com/sveltejs/eslint-plugin-svelte/pull/1043) [`778427e`](https://github.com/sveltejs/eslint-plugin-svelte/commit/778427e8bd1a015247dd7f19642e2c6ced0891a8) Thanks [@&#8203;ota-meshi](https://github.com/ota-meshi)! - feat: add `*.svelte.{js,ts}` config to base config - [#&#8203;900](https://github.com/sveltejs/eslint-plugin-svelte/pull/900) [`4759b47`](https://github.com/sveltejs/eslint-plugin-svelte/commit/4759b47b195abee605a0597360fc9fc4c6d95f68) Thanks [@&#8203;marekdedic](https://github.com/marekdedic)! - breaking: deprecated the no-goto-without-base rule - [#&#8203;885](https://github.com/sveltejs/eslint-plugin-svelte/pull/885) [`ce2ffad`](https://github.com/sveltejs/eslint-plugin-svelte/commit/ce2ffad105b1c6ed2df02a9c2b84f3b654d99ad5) Thanks [@&#8203;ota-meshi](https://github.com/ota-meshi)! - feat!: drop support for old node versions (<18, 19, 21) - [#&#8203;1011](https://github.com/sveltejs/eslint-plugin-svelte/pull/1011) [`7596287`](https://github.com/sveltejs/eslint-plugin-svelte/commit/7596287c9d1a0a31c90e23875f6b7beab20747f1) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - breaking: deprecate the `svelte/no-dynamic-slot-name` rule - [#&#8203;930](https://github.com/sveltejs/eslint-plugin-svelte/pull/930) [`eae1b4f`](https://github.com/sveltejs/eslint-plugin-svelte/commit/eae1b4fcbfbaec926cfa63a5d08eafcb2238bf82) Thanks [@&#8203;ota-meshi](https://github.com/ota-meshi)! - feat!: upgrade svelte-eslint-parser to v1 - [#&#8203;982](https://github.com/sveltejs/eslint-plugin-svelte/pull/982) [`04fc429`](https://github.com/sveltejs/eslint-plugin-svelte/commit/04fc4292ef68134691ac1808fd92688bd9982d37) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - feat!: Updated the `html-self-closing` rule to follow Svelte5 - [#&#8203;932](https://github.com/sveltejs/eslint-plugin-svelte/pull/932) [`b136ab4`](https://github.com/sveltejs/eslint-plugin-svelte/commit/b136ab4e54d8ff38f6ba7f49e1209be14dd18b0b) Thanks [@&#8203;ota-meshi](https://github.com/ota-meshi)! - feat!: change the plugin to an ESM-only package ##### Minor Changes - [#&#8203;980](https://github.com/sveltejs/eslint-plugin-svelte/pull/980) [`0b28198`](https://github.com/sveltejs/eslint-plugin-svelte/commit/0b28198edd78513e5efc4cfb45e8f1120148435e) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - feat: Implement util to conditionally run lint based on Svelte version and SvelteKit routes etc - [#&#8203;1013](https://github.com/sveltejs/eslint-plugin-svelte/pull/1013) [`0ef0f99`](https://github.com/sveltejs/eslint-plugin-svelte/commit/0ef0f99e1781e0453598393b846e63bd159c215d) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - feat: add Svelte 5 support to `no-not-function-handler` - [#&#8203;900](https://github.com/sveltejs/eslint-plugin-svelte/pull/900) [`4759b47`](https://github.com/sveltejs/eslint-plugin-svelte/commit/4759b47b195abee605a0597360fc9fc4c6d95f68) Thanks [@&#8203;marekdedic](https://github.com/marekdedic)! - feat: added the no-navigation-without-base rule - [#&#8203;925](https://github.com/sveltejs/eslint-plugin-svelte/pull/925) [`faf90ef`](https://github.com/sveltejs/eslint-plugin-svelte/commit/faf90ef9a6aab3ec647c30df67a54a25d8322324) Thanks [@&#8203;marekdedic](https://github.com/marekdedic)! - feat: added the `consistent-selector-style` rule - [#&#8203;945](https://github.com/sveltejs/eslint-plugin-svelte/pull/945) [`19f682b`](https://github.com/sveltejs/eslint-plugin-svelte/commit/19f682b73ce6bcccae52da0e59d5ab32a9d2c3c2) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - feat: Support `<svelte:boundary>` - [#&#8203;844](https://github.com/sveltejs/eslint-plugin-svelte/pull/844) [`2bbd049`](https://github.com/sveltejs/eslint-plugin-svelte/commit/2bbd0497ab7e05db0aab3c8958db08e3fdf4b9b2) Thanks [@&#8203;Winter](https://github.com/Winter)! - feat: Added suggestion to the `block-lang` rule. - [#&#8203;984](https://github.com/sveltejs/eslint-plugin-svelte/pull/984) [`35d80a5`](https://github.com/sveltejs/eslint-plugin-svelte/commit/35d80a50f1053666153bfc7221b945055bfb76d1) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - feat: support `warningFilter` in `valid-compile` rule - [#&#8203;933](https://github.com/sveltejs/eslint-plugin-svelte/pull/933) [`71eca84`](https://github.com/sveltejs/eslint-plugin-svelte/commit/71eca843c43250591ec6fa2dd1dc547b1074d6ad) Thanks [@&#8203;mikededo](https://github.com/mikededo)! - Add `prefer-const` rule - [#&#8203;918](https://github.com/sveltejs/eslint-plugin-svelte/pull/918) [`5da98c9`](https://github.com/sveltejs/eslint-plugin-svelte/commit/5da98c94f452c8436f26af4172e095fd91f66e1a) Thanks [@&#8203;mikededo](https://github.com/mikededo)! - Added new `no-deprecated-raw-special-elements` rule - [#&#8203;922](https://github.com/sveltejs/eslint-plugin-svelte/pull/922) [`f4a0fa7`](https://github.com/sveltejs/eslint-plugin-svelte/commit/f4a0fa78e06091348d985b5442a390eae47b0f4f) Thanks [@&#8203;marekdedic](https://github.com/marekdedic)! - feat: added the no-useless-children-snippet rule - [#&#8203;836](https://github.com/sveltejs/eslint-plugin-svelte/pull/836) [`3fa90aa`](https://github.com/sveltejs/eslint-plugin-svelte/commit/3fa90aa57a15ad18105b0d80b1ed975f1f782a11) Thanks [@&#8203;renovate](https://github.com/apps/renovate)! - feat: support for typescript-eslint v8 to `svelte/indent` rule - [#&#8203;963](https://github.com/sveltejs/eslint-plugin-svelte/pull/963) [`2c551b2`](https://github.com/sveltejs/eslint-plugin-svelte/commit/2c551b20557bcd53e35479336bf0c25e88a7643b) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - feat: support Svelte5 of `valid-prop-names-in-kit-pages` rule - [#&#8203;1054](https://github.com/sveltejs/eslint-plugin-svelte/pull/1054) [`c587629`](https://github.com/sveltejs/eslint-plugin-svelte/commit/c587629ba2a7d7742965367eb3ad797a9075ef8a) Thanks [@&#8203;marekdedic](https://github.com/marekdedic)! - feat: added the valid-style-parse rule - [#&#8203;1085](https://github.com/sveltejs/eslint-plugin-svelte/pull/1085) [`a0588ef`](https://github.com/sveltejs/eslint-plugin-svelte/commit/a0588ef1fa2d3662a664f4d5564f9f225c67696e) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: update `svelte-eslint-parser` to v1 - [#&#8203;1015](https://github.com/sveltejs/eslint-plugin-svelte/pull/1015) [`8369eaf`](https://github.com/sveltejs/eslint-plugin-svelte/commit/8369eaf5d2e77fccf0ac9fb3f663d94a2b323a4f) Thanks [@&#8203;mikededo](https://github.com/mikededo)! - fix!: rename `no-deprecated-raw-special-elements` to `no-raw-special-elements` - [#&#8203;911](https://github.com/sveltejs/eslint-plugin-svelte/pull/911) [`452ffed`](https://github.com/sveltejs/eslint-plugin-svelte/commit/452ffed53791cb9e158636bcd80a221d2840cc4a) Thanks [@&#8203;marekdedic](https://github.com/marekdedic)! - feat(no-inline-styles): allowing transitions by default - [#&#8203;1063](https://github.com/sveltejs/eslint-plugin-svelte/pull/1063) [`d39c90c`](https://github.com/sveltejs/eslint-plugin-svelte/commit/d39c90c86edfedb9be42a011a5ca4573f6661397) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - feat: detect version information from node_modules when not specified in package.json, like pnpm’s catalog ##### Patch Changes - [#&#8203;961](https://github.com/sveltejs/eslint-plugin-svelte/pull/961) [`117e60d`](https://github.com/sveltejs/eslint-plugin-svelte/commit/117e60d4290966911450c7e0db8566279e4511bb) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - fix: support each blocks without an item - [#&#8203;1009](https://github.com/sveltejs/eslint-plugin-svelte/pull/1009) [`a003664`](https://github.com/sveltejs/eslint-plugin-svelte/commit/a0036643b5451f0423cd61dafd092c39bd6f4bcb) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: upgrade `svelte-eslint-parser` to `1.0.0-next.8` - [#&#8203;1016](https://github.com/sveltejs/eslint-plugin-svelte/pull/1016) [`91999e3`](https://github.com/sveltejs/eslint-plugin-svelte/commit/91999e3520afe42b3cc51f0823f7c912b97176b4) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: change the rule category of `valid-prop-names-in-kit-pages` to `SvelteKit` - [#&#8203;993](https://github.com/sveltejs/eslint-plugin-svelte/pull/993) [`b97a13e`](https://github.com/sveltejs/eslint-plugin-svelte/commit/b97a13eb02f9c72346f29e64734f0a304890a197) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: add `:exit` for each node listener - [#&#8203;1048](https://github.com/sveltejs/eslint-plugin-svelte/pull/1048) [`513806c`](https://github.com/sveltejs/eslint-plugin-svelte/commit/513806cafe221487afd32bdcaa33ba8852dc881f) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - fix: allow `children` in `valid-prop-names-in-kit-pages` rule - [#&#8203;1012](https://github.com/sveltejs/eslint-plugin-svelte/pull/1012) [`763cf7a`](https://github.com/sveltejs/eslint-plugin-svelte/commit/763cf7ace209dfb90cf7d1d7e6699a6c0fe240d6) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: change the rule category of `no-export-load-in-svelte-module-in-kit-pages` to `SvelteKit` - [#&#8203;1021](https://github.com/sveltejs/eslint-plugin-svelte/pull/1021) [`6557c69`](https://github.com/sveltejs/eslint-plugin-svelte/commit/6557c69d7f3595cdf226e681cadf3d0df4c5d972) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: update `svelte-eslint-parser` to `1.0.0-next.10` - [#&#8203;956](https://github.com/sveltejs/eslint-plugin-svelte/pull/956) [`157ee1f`](https://github.com/sveltejs/eslint-plugin-svelte/commit/157ee1fade79aab88f01d125b0b01cf375da4cd1) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: update `svelte-eslint-parser` to v1.0.0-next.4 - [#&#8203;965](https://github.com/sveltejs/eslint-plugin-svelte/pull/965) [`47760ad`](https://github.com/sveltejs/eslint-plugin-svelte/commit/47760ad1b7f6b83d4c29380b3ef3cf09cde42dc8) Thanks [@&#8203;marekdedic](https://github.com/marekdedic)! - chore: using svelte-eslint-parser for style selector parsing - [#&#8203;990](https://github.com/sveltejs/eslint-plugin-svelte/pull/990) [`12049c0`](https://github.com/sveltejs/eslint-plugin-svelte/commit/12049c026f529feff6056e679ba62f07de948aa5) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - fix: ignore `css_unused_selector` compile error if `<style>` tag has `global` attribute - [#&#8203;1035](https://github.com/sveltejs/eslint-plugin-svelte/pull/1035) [`f16729f`](https://github.com/sveltejs/eslint-plugin-svelte/commit/f16729f55877b1768ec8d240fd8e416f141781ce) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: run `require-event-dispatcher-types` rule on Svelte 3/4 only - [#&#8203;1040](https://github.com/sveltejs/eslint-plugin-svelte/pull/1040) [`ac7115c`](https://github.com/sveltejs/eslint-plugin-svelte/commit/ac7115c74b3f1e82ef15be81d9ef2026da76bb11) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - fix: account for \n and \r in `TemplateLiteral` handling for the `no-useless-mustaches` rule - [#&#8203;1020](https://github.com/sveltejs/eslint-plugin-svelte/pull/1020) [`eae0e2e`](https://github.com/sveltejs/eslint-plugin-svelte/commit/eae0e2e52c2812ea630eea45e5be4f439191c806) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: update `svelte-eslint-parser` to `1.0.0-next.9` - [#&#8203;1017](https://github.com/sveltejs/eslint-plugin-svelte/pull/1017) [`806d72a`](https://github.com/sveltejs/eslint-plugin-svelte/commit/806d72ad55908fb967252ea0514672b026a6bd09) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: do not run `no-reactive-functions` rule on Svelte 5 with runes - [#&#8203;1014](https://github.com/sveltejs/eslint-plugin-svelte/pull/1014) [`74373ec`](https://github.com/sveltejs/eslint-plugin-svelte/commit/74373ec77aa9063c64657faefc01ca331e27b599) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: do not run `no-reactive-reassign` rule on Svelte 5 with runes - [#&#8203;1026](https://github.com/sveltejs/eslint-plugin-svelte/pull/1026) [`1bed311`](https://github.com/sveltejs/eslint-plugin-svelte/commit/1bed311084c58a9893e2b578f8b34c2fcb2e8d8b) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: update `svelte-eslint-parser` to `v1.0.0-next.12` - [#&#8203;941](https://github.com/sveltejs/eslint-plugin-svelte/pull/941) [`fce2f74`](https://github.com/sveltejs/eslint-plugin-svelte/commit/fce2f74b4b2fe8185742f0411739103301f8ea9f) Thanks [@&#8203;ota-meshi](https://github.com/ota-meshi)! - fix: crash with eslint v9.16.0 in `svelte/no-inner-declarations` - [#&#8203;1018](https://github.com/sveltejs/eslint-plugin-svelte/pull/1018) [`5bdc906`](https://github.com/sveltejs/eslint-plugin-svelte/commit/5bdc906fc1e32835ab3b75dfd2a6a08b4cbb968b) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: run the `no-inspect` rule only in Svelte 5’s runes mode - [#&#8203;1006](https://github.com/sveltejs/eslint-plugin-svelte/pull/1006) [`5fd91ba`](https://github.com/sveltejs/eslint-plugin-svelte/commit/5fd91baa1835cbffc58a8c473ccf70f3f02a34e6) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: do not run `infinite-reactive-loop` rule on Svelte 5 with runes - [#&#8203;1031](https://github.com/sveltejs/eslint-plugin-svelte/pull/1031) [`e50d2d4`](https://github.com/sveltejs/eslint-plugin-svelte/commit/e50d2d4a8820c222696c049e0b01988626845584) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: do not run `no-reactive-literals` rule on Svelte 5 with runes - [#&#8203;1032](https://github.com/sveltejs/eslint-plugin-svelte/pull/1032) [`722b36c`](https://github.com/sveltejs/eslint-plugin-svelte/commit/722b36ce3b8a16b965f61701dead22b95c7e8b3d) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - chore: run `no-useless-children-snippet` rule on Svelte 5 only - [#&#8203;1007](https://github.com/sveltejs/eslint-plugin-svelte/pull/1007) [`8e9199a`](https://github.com/sveltejs/eslint-plugin-svelte/commit/8e9199ae326110778e4b0557616d394c6ac5e847) Thanks [@&#8203;baseballyama](https://github.com/baseballyama)! - fix: update method for extracting major version </details> --- ### Configuration 📅 **Schedule**: 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjQuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE2NC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
renovate-bot added 1 commit 2025-03-27 22:25:09 +00:00
chore(deps): update dependency eslint-plugin-svelte to v3
Some checks reported errors
continuous-integration/drone/push Build was killed
8d6c39592e
nemunaire merged commit 47f2004a4c into master 2025-03-28 08:25:59 +00:00
nemunaire deleted branch renovate/eslint-plugin-svelte-3.x 2025-03-28 08:26:00 +00:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: fic/server#541
No description provided.