Skip to content

Commit fa57768

Browse files
chore: release eslint-plugin-svelte (#307)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 48bb4b7 commit fa57768

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

.changeset/rotten-moons-shop.md

-5
This file was deleted.

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

src/types-for-node.ts

+6
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)