Skip to content

Commit f46aa89

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

File tree

6 files changed

+16
-18
lines changed

6 files changed

+16
-18
lines changed

.changeset/mighty-buckets-hope.md

-5
This file was deleted.

.changeset/poor-books-raise.md

-5
This file was deleted.

.changeset/thick-boxes-warn.md

-5
This file was deleted.

CHANGELOG.md

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

3+
## 2.13.0
4+
5+
### Minor Changes
6+
7+
- [#303](https://github.com/ota-meshi/eslint-plugin-svelte/pull/303) [`747eae5`](https://github.com/ota-meshi/eslint-plugin-svelte/commit/747eae528d8aadc0d31a64f04baa8f2e557e80c6) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: update svelte-eslint-parser to v0.21
8+
9+
- [#296](https://github.com/ota-meshi/eslint-plugin-svelte/pull/296) [`695e2e5`](https://github.com/ota-meshi/eslint-plugin-svelte/commit/695e2e50762bf004af9200d7d05958e5cea08f70) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: improve reporting range for `svelte/html-self-closing` rule.
10+
11+
- [#302](https://github.com/ota-meshi/eslint-plugin-svelte/pull/302) [`f0d3e68`](https://github.com/ota-meshi/eslint-plugin-svelte/commit/f0d3e68f75f6a90d5f245313e96b3987fec6761f) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: add `svelte/no-dom-manipulating` rule
12+
313
## 2.12.0
414

515
### Minor Changes

docs/rules/no-dom-manipulating.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ pageClass: "rule-details"
33
sidebarDepth: 0
44
title: "svelte/no-dom-manipulating"
55
description: "disallow DOM manipulating"
6+
since: "v2.13.0"
67
---
78

89
# svelte/no-dom-manipulating
910

1011
> disallow DOM manipulating
1112
12-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> **_This rule has not been released yet._** </badge>
13-
1413
## :book: Rule Details
1514

1615
In general, DOM manipulating should delegate to Svelte runtime. If you manipulate the DOM directly, the Svelte runtime may confuse because there is a difference between the actual DOM and the Svelte runtime's expected DOM.
@@ -103,6 +102,10 @@ See also <https://svelte.jp/examples/custom-js-transitions>.
103102

104103
Nothing.
105104

105+
## :rocket: Version
106+
107+
This rule was introduced in eslint-plugin-svelte v2.13.0
108+
106109
## :mag: Implementation
107110

108111
- [Rule source](https://github.com/ota-meshi/eslint-plugin-svelte/blob/main/src/rules/no-dom-manipulating.ts)

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.12.0",
3+
"version": "2.13.0",
44
"description": "ESLint plugin for Svelte using AST",
55
"repository": "git+https://github.com/ota-meshi/eslint-plugin-svelte.git",
66
"homepage": "https://ota-meshi.github.io/eslint-plugin-svelte",

0 commit comments

Comments
 (0)