Skip to content

Commit

Permalink
chore: release eslint-plugin-svelte (#446)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Apr 26, 2023
1 parent 9b5198c commit fc33676
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 20 deletions.
5 changes: 0 additions & 5 deletions .changeset/curvy-bananas-pretend.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/great-cats-explode.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tidy-pugs-draw.md

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# eslint-plugin-svelte

## 2.27.0

### Minor Changes

- [#439](https://github.com/sveltejs/eslint-plugin-svelte/pull/439) [`f810b69`](https://github.com/sveltejs/eslint-plugin-svelte/commit/f810b694e2b3bc1bad0daba8227bcd672a8cb454) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: add `svelte/no-immutable-reactive-statements` rule

- [#447](https://github.com/sveltejs/eslint-plugin-svelte/pull/447) [`9b5198c`](https://github.com/sveltejs/eslint-plugin-svelte/commit/9b5198c8c9606e50867c95a6bc2b5ae4fe948c8d) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update dependency svelte-eslint-parser to ^0.27.0

- [#440](https://github.com/sveltejs/eslint-plugin-svelte/pull/440) [`ed68b20`](https://github.com/sveltejs/eslint-plugin-svelte/commit/ed68b205c2ff9c80237c06b453e9de3957a4f090) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: add `svelte/no-reactive-reassign` rule

## 2.26.0

### Minor Changes
Expand Down
7 changes: 5 additions & 2 deletions docs/rules/no-immutable-reactive-statements.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@ pageClass: "rule-details"
sidebarDepth: 0
title: "svelte/no-immutable-reactive-statements"
description: "disallow reactive statements that don't reference reactive values."
since: "v2.27.0"
---

# svelte/no-immutable-reactive-statements

> disallow reactive statements that don't reference reactive values.
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> **_This rule has not been released yet._** </badge>

## :book: Rule Details

This rule reports if all variables referenced in reactive statements are immutable. That reactive statement is immutable and not reactive.
Expand Down Expand Up @@ -61,6 +60,10 @@ This rule reports if all variables referenced in reactive statements are immutab

Nothing.

## :rocket: Version

This rule was introduced in eslint-plugin-svelte v2.27.0

## :mag: Implementation

- [Rule source](https://github.com/sveltejs/eslint-plugin-svelte/blob/main/src/rules/no-immutable-reactive-statements.ts)
Expand Down
7 changes: 5 additions & 2 deletions docs/rules/no-reactive-reassign.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@ pageClass: "rule-details"
sidebarDepth: 0
title: "svelte/no-reactive-reassign"
description: "disallow reassigning reactive values"
since: "v2.27.0"
---

# svelte/no-reactive-reassign

> disallow reassigning reactive values
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> **_This rule has not been released yet._** </badge>

## :book: Rule Details

This rule aims to prevent unintended behavior caused by modification or reassignment of reactive values.
Expand Down Expand Up @@ -116,6 +115,10 @@ This rule aims to prevent unintended behavior caused by modification or reassign

</ESLintCodeBlock>

## :rocket: Version

This rule was introduced in eslint-plugin-svelte v2.27.0

## :mag: Implementation

- [Rule source](https://github.com/sveltejs/eslint-plugin-svelte/blob/main/src/rules/no-reactive-reassign.ts)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-svelte",
"version": "2.26.0",
"version": "2.27.0",
"description": "ESLint plugin for Svelte using AST",
"repository": "git+https://github.com/sveltejs/eslint-plugin-svelte.git",
"homepage": "https://sveltejs.github.io/eslint-plugin-svelte",
Expand Down

0 comments on commit fc33676

Please sign in to comment.