Skip to content

Commit 2827649

Browse files
chore: release eslint-plugin-svelte
1 parent eca2c3d commit 2827649

File tree

6 files changed

+15
-14
lines changed

6 files changed

+15
-14
lines changed

.changeset/tasty-beds-compare.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/wise-flies-lay.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# eslint-plugin-svelte
22

3+
## 2.31.0
4+
5+
### Minor Changes
6+
7+
- [#504](https://github.com/sveltejs/eslint-plugin-svelte/pull/504) [`ab9e6e7`](https://github.com/sveltejs/eslint-plugin-svelte/commit/ab9e6e7f64537747a31826d9ff3758350f0b0f59) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update dependency svelte-eslint-parser to ^0.31.0
8+
9+
- [#499](https://github.com/sveltejs/eslint-plugin-svelte/pull/499) [`16d6816`](https://github.com/sveltejs/eslint-plugin-svelte/commit/16d6816bbfec66ad89bbbe59429c74c6a21542df) Thanks [@baseballyama](https://github.com/baseballyama)! - feat: add `no-restricted-html-elements` rule
10+
311
## 2.30.0
412

513
### Minor Changes

docs/rules/no-restricted-html-elements.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ pageClass: "rule-details"
33
sidebarDepth: 0
44
title: "svelte/no-restricted-html-elements"
55
description: "disallow specific HTML elements"
6+
since: "v2.31.0"
67
---
78

89
# svelte/no-restricted-html-elements
910

1011
> disallow specific HTML elements
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
This rule reports to usage of resticted HTML elements.
@@ -101,6 +100,10 @@ Alternatively, the rule also accepts objects.
101100
}
102101
```
103102

103+
## :rocket: Version
104+
105+
This rule was introduced in eslint-plugin-svelte v2.31.0
106+
104107
## :mag: Implementation
105108

106109
- [Rule source](https://github.com/sveltejs/eslint-plugin-svelte/blob/main/src/rules/no-restricted-html-elements.ts)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-svelte",
3-
"version": "2.30.0",
3+
"version": "2.31.0",
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/meta.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
// This file has been automatically generated,
33
// in order to update its content execute "pnpm run update"
44
export const name = "eslint-plugin-svelte" as const
5-
export const version = "2.30.0" as const
5+
export const version = "2.31.0" as const

0 commit comments

Comments
 (0)