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 11# eslint-plugin-svelte
22
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+
39## 2.13.0
410
511### Minor Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " eslint-plugin-svelte" ,
3- "version" : " 2.13.0 " ,
3+ "version" : " 2.13.1 " ,
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" ,
Original file line number Diff line number Diff line change @@ -304,6 +304,9 @@ export type ASTNodeListener = {
304304 node : TSESTree . TSReadonlyKeyword & ASTNodeWithParent ,
305305 ) => void
306306 TSRestType ?: ( node : TSESTree . TSRestType & ASTNodeWithParent ) => void
307+ TSSatisfiesExpression ?: (
308+ node : TSESTree . TSSatisfiesExpression & ASTNodeWithParent ,
309+ ) => void
307310 TSStaticKeyword ?: ( node : TSESTree . TSStaticKeyword & ASTNodeWithParent ) => void
308311 TSStringKeyword ?: ( node : TSESTree . TSStringKeyword & ASTNodeWithParent ) => void
309312 TSSymbolKeyword ?: ( node : TSESTree . TSSymbolKeyword & ASTNodeWithParent ) => void
@@ -663,6 +666,9 @@ export type TSNodeListener = {
663666 node : TSESTree . TSReadonlyKeyword & ASTNodeWithParent ,
664667 ) => void
665668 TSRestType ?: ( node : TSESTree . TSRestType & ASTNodeWithParent ) => void
669+ TSSatisfiesExpression ?: (
670+ node : TSESTree . TSSatisfiesExpression & ASTNodeWithParent ,
671+ ) => void
666672 TSStaticKeyword ?: ( node : TSESTree . TSStaticKeyword & ASTNodeWithParent ) => void
667673 TSStringKeyword ?: ( node : TSESTree . TSStringKeyword & ASTNodeWithParent ) => void
668674 TSSymbolKeyword ?: ( node : TSESTree . TSSymbolKeyword & ASTNodeWithParent ) => void
You can’t perform that action at this time.
0 commit comments