Skip to content

Commit 3c97ced

Browse files
chore: release eslint-plugin-svelte
1 parent 534ad78 commit 3c97ced

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

.changeset/dry-facts-eat.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/eslint-plugin-svelte/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# eslint-plugin-svelte
22

3+
## 3.7.0
4+
5+
### Minor Changes
6+
7+
- [#1221](https://github.com/sveltejs/eslint-plugin-svelte/pull/1221) [`534ad78`](https://github.com/sveltejs/eslint-plugin-svelte/commit/534ad78221f040ea5f9c32835d6973f4a3643580) Thanks [@baseballyama](https://github.com/baseballyama)! - feat(sort-attributes): support `{@attach}`
8+
39
## 3.6.0
410

511
### Minor Changes

packages/eslint-plugin-svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-svelte",
3-
"version": "3.6.0",
3+
"version": "3.7.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",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// IMPORTANT!
22
// This file has been automatically generated,
33
// in order to update its content execute "pnpm run update"
4-
export const name = 'eslint-plugin-svelte';
5-
export const version = '3.6.0';
4+
export const name = 'eslint-plugin-svelte' as const;
5+
export const version = '3.7.0' as const;

packages/eslint-plugin-svelte/src/types-for-node.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,8 @@ export type ASTNodeListener = {
475475
) => void;
476476
SvelteSpreadAttribute?: (node: AST.SvelteSpreadAttribute & ASTNodeWithParent) => void;
477477
'SvelteSpreadAttribute:exit'?: (node: AST.SvelteSpreadAttribute & ASTNodeWithParent) => void;
478+
SvelteAttachTag?: (node: AST.SvelteAttachTag & ASTNodeWithParent) => void;
479+
'SvelteAttachTag:exit'?: (node: AST.SvelteAttachTag & ASTNodeWithParent) => void;
478480
SvelteDirective?: (node: AST.SvelteDirective & ASTNodeWithParent) => void;
479481
'SvelteDirective:exit'?: (node: AST.SvelteDirective & ASTNodeWithParent) => void;
480482
SvelteStyleDirective?: (node: AST.SvelteStyleDirective & ASTNodeWithParent) => void;
@@ -938,6 +940,8 @@ export type SvelteNodeListener = {
938940
) => void;
939941
SvelteSpreadAttribute?: (node: AST.SvelteSpreadAttribute & ASTNodeWithParent) => void;
940942
'SvelteSpreadAttribute:exit'?: (node: AST.SvelteSpreadAttribute & ASTNodeWithParent) => void;
943+
SvelteAttachTag?: (node: AST.SvelteAttachTag & ASTNodeWithParent) => void;
944+
'SvelteAttachTag:exit'?: (node: AST.SvelteAttachTag & ASTNodeWithParent) => void;
941945
SvelteDirective?: (node: AST.SvelteDirective & ASTNodeWithParent) => void;
942946
'SvelteDirective:exit'?: (node: AST.SvelteDirective & ASTNodeWithParent) => void;
943947
SvelteStyleDirective?: (node: AST.SvelteStyleDirective & ASTNodeWithParent) => void;

0 commit comments

Comments
 (0)