Skip to content

Commit 863fefb

Browse files
chore: release eslint-plugin-svelte
1 parent 268a372 commit 863fefb

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

.changeset/twelve-beers-talk.md

-5
This file was deleted.

docs/rules/no-unused-props.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ pageClass: 'rule-details'
33
sidebarDepth: 0
44
title: 'svelte/no-unused-props'
55
description: 'Warns about defined Props properties that are unused'
6+
since: 'v3.2.0'
67
---
78

89
# svelte/no-unused-props
910

1011
> Warns about defined Props properties that are unused
1112
12-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> **_This rule has not been released yet._** </badge>
1313
- :gear: This rule is included in `"plugin:svelte/recommended"`.
1414

1515
## :book: Rule Details
@@ -202,6 +202,10 @@ Examples:
202202

203203
This rule requires `@typescript-eslint/parser` to work. Please refer to the [User Guide](../user-guide.md) for more information.
204204

205+
## :rocket: Version
206+
207+
This rule was introduced in eslint-plugin-svelte v3.2.0
208+
205209
## :mag: Implementation
206210

207211
- [Rule source](https://github.com/sveltejs/eslint-plugin-svelte/blob/main/packages/eslint-plugin-svelte/src/rules/no-unused-props.ts)

packages/eslint-plugin-svelte/CHANGELOG.md

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

3+
## 3.2.0
4+
5+
### Minor Changes
6+
7+
- [#1061](https://github.com/sveltejs/eslint-plugin-svelte/pull/1061) [`268a372`](https://github.com/sveltejs/eslint-plugin-svelte/commit/268a3727e17c4bcb1906cc6901667a1272d2a191) Thanks [@baseballyama](https://github.com/baseballyama)! - feat: add `no-unused-props` rule
8+
39
## 3.1.0
410

511
### Minor Changes

packages/eslint-plugin-svelte/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-svelte",
3-
"version": "3.1.0",
3+
"version": "3.2.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",

packages/eslint-plugin-svelte/src/meta.ts

+1-1
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';
5-
export const version = '3.1.0';
5+
export const version = '3.2.0';

0 commit comments

Comments
 (0)