File tree Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# eslint-plugin-svelte
2
2
3
+ ## 2.13.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [ #306 ] ( https://github.com/ota-meshi/eslint-plugin-svelte/pull/306 ) [ ` 48bb4b7 ` ] ( https://github.com/ota-meshi/eslint-plugin-svelte/commit/48bb4b793864dc9689a5f021ae17c2bd08a3e325 ) Thanks [ @ota-meshi ] ( https://github.com/ota-meshi ) ! - fix: update svelte-eslint-parser to 0.22
8
+
3
9
## 2.13.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" : " 2.13.0 " ,
3
+ "version" : " 2.13.1 " ,
4
4
"description" : " ESLint plugin for Svelte using AST" ,
5
5
"repository" : " git+https://github.com/ota-meshi/eslint-plugin-svelte.git" ,
6
6
"homepage" : " https://ota-meshi.github.io/eslint-plugin-svelte" ,
Original file line number Diff line number Diff line change @@ -304,6 +304,9 @@ export type ASTNodeListener = {
304
304
node : TSESTree . TSReadonlyKeyword & ASTNodeWithParent ,
305
305
) => void
306
306
TSRestType ?: ( node : TSESTree . TSRestType & ASTNodeWithParent ) => void
307
+ TSSatisfiesExpression ?: (
308
+ node : TSESTree . TSSatisfiesExpression & ASTNodeWithParent ,
309
+ ) => void
307
310
TSStaticKeyword ?: ( node : TSESTree . TSStaticKeyword & ASTNodeWithParent ) => void
308
311
TSStringKeyword ?: ( node : TSESTree . TSStringKeyword & ASTNodeWithParent ) => void
309
312
TSSymbolKeyword ?: ( node : TSESTree . TSSymbolKeyword & ASTNodeWithParent ) => void
@@ -663,6 +666,9 @@ export type TSNodeListener = {
663
666
node : TSESTree . TSReadonlyKeyword & ASTNodeWithParent ,
664
667
) => void
665
668
TSRestType ?: ( node : TSESTree . TSRestType & ASTNodeWithParent ) => void
669
+ TSSatisfiesExpression ?: (
670
+ node : TSESTree . TSSatisfiesExpression & ASTNodeWithParent ,
671
+ ) => void
666
672
TSStaticKeyword ?: ( node : TSESTree . TSStaticKeyword & ASTNodeWithParent ) => void
667
673
TSStringKeyword ?: ( node : TSESTree . TSStringKeyword & ASTNodeWithParent ) => void
668
674
TSSymbolKeyword ?: ( node : TSESTree . TSSymbolKeyword & ASTNodeWithParent ) => void
You can’t perform that action at this time.
0 commit comments