Skip to content

Commit ffc27a7

Browse files
chore: release eslint-plugin-svelte (#457)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent cc38756 commit ffc27a7

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.changeset/mighty-paws-play.md

-5
This file was deleted.

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# eslint-plugin-svelte
22

3+
## 2.27.2
4+
5+
### Patch Changes
6+
7+
- [#455](https://github.com/sveltejs/eslint-plugin-svelte/pull/455) [`bfd8a29`](https://github.com/sveltejs/eslint-plugin-svelte/commit/bfd8a296ff852b58ba11a4854e7815f8fc7d7443) Thanks [@baseballyama](https://github.com/baseballyama)! - disable `no-self-assign` rule in Svelte files
8+
39
## 2.27.1
410

511
### Patch Changes

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-svelte",
3-
"version": "2.27.1",
3+
"version": "2.27.2",
44
"description": "ESLint plugin for Svelte using AST",
55
"repository": "git+https://github.com/sveltejs/eslint-plugin-svelte.git",
66
"homepage": "https://sveltejs.github.io/eslint-plugin-svelte",

src/configs/base.ts

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ export = {
88
// ESLint core rules known to cause problems with `.svelte`.
99
"no-inner-declarations": "off", // The AST generated by svelte-eslint-parser will false positives in it rule because the root node of the script is not the `Program`.
1010
// "no-irregular-whitespace": "off",
11-
// Self assign is one of way to update reactive value in Svelte.
12-
"no-self-assign": "off",
1311

1412
// eslint-plugin-svelte rules
1513
"svelte/comment-directive": "error",

0 commit comments

Comments
 (0)