File tree Expand file tree Collapse file tree 5 files changed +13
-8
lines changed
packages/eslint-plugin-svelte Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,13 +3,13 @@ pageClass: 'rule-details'
3
3
sidebarDepth : 0
4
4
title : ' svelte/no-unused-props'
5
5
description : ' Warns about defined Props properties that are unused'
6
+ since : ' v3.2.0'
6
7
---
7
8
8
9
# svelte/no-unused-props
9
10
10
11
> Warns about defined Props properties that are unused
11
12
12
- - :exclamation : <badge text =" This rule has not been released yet. " vertical =" middle " type =" error " > ** _ This rule has not been released yet._ ** </badge >
13
13
- :gear : This rule is included in ` "plugin:svelte/recommended" ` .
14
14
15
15
## :book : Rule Details
@@ -202,6 +202,10 @@ Examples:
202
202
203
203
This rule requires ` @typescript-eslint/parser ` to work. Please refer to the [ User Guide] ( ../user-guide.md ) for more information.
204
204
205
+ ## :rocket : Version
206
+
207
+ This rule was introduced in eslint-plugin-svelte v3.2.0
208
+
205
209
## :mag : Implementation
206
210
207
211
- [ Rule source] ( https://github.com/sveltejs/eslint-plugin-svelte/blob/main/packages/eslint-plugin-svelte/src/rules/no-unused-props.ts )
Original file line number Diff line number Diff line change 1
1
# eslint-plugin-svelte
2
2
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
+
3
9
## 3.1.0
4
10
5
11
### Minor Changes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " eslint-plugin-svelte" ,
3
- "version" : " 3.1 .0" ,
3
+ "version" : " 3.2 .0" ,
4
4
"description" : " ESLint plugin for Svelte using AST" ,
5
5
"repository" : " git+https://github.com/sveltejs/eslint-plugin-svelte.git" ,
6
6
"homepage" : " https://sveltejs.github.io/eslint-plugin-svelte" ,
Original file line number Diff line number Diff line change 2
2
// This file has been automatically generated,
3
3
// in order to update its content execute "pnpm run update"
4
4
export const name = 'eslint-plugin-svelte' ;
5
- export const version = '3.1 .0' ;
5
+ export const version = '3.2 .0' ;
You can’t perform that action at this time.
0 commit comments