File tree 5 files changed +13
-8
lines changed
packages/eslint-plugin-svelte 5 files changed +13
-8
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
+ ## 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
+
3
9
## 3.6.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.6 .0" ,
3
+ "version" : " 3.7 .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 1
1
// IMPORTANT!
2
2
// This file has been automatically generated,
3
3
// 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 ;
Original file line number Diff line number Diff line change @@ -475,6 +475,8 @@ export type ASTNodeListener = {
475
475
) => void ;
476
476
SvelteSpreadAttribute ?: ( node : AST . SvelteSpreadAttribute & ASTNodeWithParent ) => void ;
477
477
'SvelteSpreadAttribute:exit' ?: ( node : AST . SvelteSpreadAttribute & ASTNodeWithParent ) => void ;
478
+ SvelteAttachTag ?: ( node : AST . SvelteAttachTag & ASTNodeWithParent ) => void ;
479
+ 'SvelteAttachTag:exit' ?: ( node : AST . SvelteAttachTag & ASTNodeWithParent ) => void ;
478
480
SvelteDirective ?: ( node : AST . SvelteDirective & ASTNodeWithParent ) => void ;
479
481
'SvelteDirective:exit' ?: ( node : AST . SvelteDirective & ASTNodeWithParent ) => void ;
480
482
SvelteStyleDirective ?: ( node : AST . SvelteStyleDirective & ASTNodeWithParent ) => void ;
@@ -938,6 +940,8 @@ export type SvelteNodeListener = {
938
940
) => void ;
939
941
SvelteSpreadAttribute ?: ( node : AST . SvelteSpreadAttribute & ASTNodeWithParent ) => void ;
940
942
'SvelteSpreadAttribute:exit' ?: ( node : AST . SvelteSpreadAttribute & ASTNodeWithParent ) => void ;
943
+ SvelteAttachTag ?: ( node : AST . SvelteAttachTag & ASTNodeWithParent ) => void ;
944
+ 'SvelteAttachTag:exit' ?: ( node : AST . SvelteAttachTag & ASTNodeWithParent ) => void ;
941
945
SvelteDirective ?: ( node : AST . SvelteDirective & ASTNodeWithParent ) => void ;
942
946
'SvelteDirective:exit' ?: ( node : AST . SvelteDirective & ASTNodeWithParent ) => void ;
943
947
SvelteStyleDirective ?: ( node : AST . SvelteStyleDirective & ASTNodeWithParent ) => void ;
You can’t perform that action at this time.
0 commit comments