File tree Expand file tree Collapse file tree 4 files changed +12
-2
lines changed
packages/eslint-plugin-svelte
tests/fixtures/rules/sort-attributes Expand file tree Collapse file tree 4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 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.6.0' as const ;
Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff line change 1+ {
2+ "svelte" : " ^5.0.0"
3+ }
Original file line number Diff line number Diff line change 1+ {
2+ "svelte" : " ^5.0.0"
3+ }
You can’t perform that action at this time.
0 commit comments