Skip to content

Commit dc107d3

Browse files
chore: release eslint-plugin-astro (#419)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent fdb9b05 commit dc107d3

File tree

6 files changed

+25
-20
lines changed

6 files changed

+25
-20
lines changed

.changeset/late-dancers-guess.md

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

CHANGELOG.md

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

3+
## 1.2.4
4+
5+
### Patch Changes
6+
7+
- [#418](https://github.com/ota-meshi/eslint-plugin-astro/pull/418) [`b03d0d5`](https://github.com/ota-meshi/eslint-plugin-astro/commit/b03d0d5ef86e7ef572570712e3ae18581b5e7fc0) Thanks [@JoshuaKGoldberg](https://github.com/JoshuaKGoldberg)! - feat: support typescript-eslint@8
8+
39
## 1.2.3
410

511
### Patch Changes

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-astro",
3-
"version": "1.2.3",
3+
"version": "1.2.4",
44
"description": "ESLint plugin for Astro component",
55
"main": "lib/index.js",
66
"module": "lib/index.mjs",

src/configs/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { hasTypescriptEslintParser } from "./has-typescript-eslint-parser"
77
/**
88
* Build legacy base config
99
*/
10-
export function buildLegacyBase(): Linter.LegacyConfig {
10+
export function buildLegacyBase(): Linter.Config {
1111
return {
1212
plugins: ["astro"],
1313
overrides: [

src/meta.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
// This file has been automatically generated,
33
// in order to update its content execute "npm run update"
44
export const name = "eslint-plugin-astro"
5-
export const version = "1.2.3"
5+
export const version = "1.2.4"

src/types-for-node.ts

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,8 @@ export type ASTNodeListener = {
448448
"TSEmptyBodyFunctionExpression:exit"?: (
449449
node: TSESTree.TSEmptyBodyFunctionExpression & ASTNodeWithParent,
450450
) => void
451+
TSEnumBody?: (node: TSESTree.TSEnumBody & ASTNodeWithParent) => void
452+
"TSEnumBody:exit"?: (node: TSESTree.TSEnumBody & ASTNodeWithParent) => void
451453
TSEnumDeclaration?: (
452454
node: TSESTree.TSEnumDeclaration & ASTNodeWithParent,
453455
) => void
@@ -478,12 +480,6 @@ export type ASTNodeListener = {
478480
"TSFunctionType:exit"?: (
479481
node: TSESTree.TSFunctionType & ASTNodeWithParent,
480482
) => void
481-
TSInstantiationExpression?: (
482-
node: TSESTree.TSInstantiationExpression & ASTNodeWithParent,
483-
) => void
484-
"TSInstantiationExpression:exit"?: (
485-
node: TSESTree.TSInstantiationExpression & ASTNodeWithParent,
486-
) => void
487483
TSImportEqualsDeclaration?: (
488484
node: TSESTree.TSImportEqualsDeclaration & ASTNodeWithParent,
489485
) => void
@@ -508,6 +504,12 @@ export type ASTNodeListener = {
508504
) => void
509505
TSInferType?: (node: TSESTree.TSInferType & ASTNodeWithParent) => void
510506
"TSInferType:exit"?: (node: TSESTree.TSInferType & ASTNodeWithParent) => void
507+
TSInstantiationExpression?: (
508+
node: TSESTree.TSInstantiationExpression & ASTNodeWithParent,
509+
) => void
510+
"TSInstantiationExpression:exit"?: (
511+
node: TSESTree.TSInstantiationExpression & ASTNodeWithParent,
512+
) => void
511513
TSInterfaceBody?: (node: TSESTree.TSInterfaceBody & ASTNodeWithParent) => void
512514
"TSInterfaceBody:exit"?: (
513515
node: TSESTree.TSInterfaceBody & ASTNodeWithParent,
@@ -932,6 +934,8 @@ export type TSNodeListener = {
932934
"TSEmptyBodyFunctionExpression:exit"?: (
933935
node: TSESTree.TSEmptyBodyFunctionExpression & ASTNodeWithParent,
934936
) => void
937+
TSEnumBody?: (node: TSESTree.TSEnumBody & ASTNodeWithParent) => void
938+
"TSEnumBody:exit"?: (node: TSESTree.TSEnumBody & ASTNodeWithParent) => void
935939
TSEnumDeclaration?: (
936940
node: TSESTree.TSEnumDeclaration & ASTNodeWithParent,
937941
) => void
@@ -962,12 +966,6 @@ export type TSNodeListener = {
962966
"TSFunctionType:exit"?: (
963967
node: TSESTree.TSFunctionType & ASTNodeWithParent,
964968
) => void
965-
TSInstantiationExpression?: (
966-
node: TSESTree.TSInstantiationExpression & ASTNodeWithParent,
967-
) => void
968-
"TSInstantiationExpression:exit"?: (
969-
node: TSESTree.TSInstantiationExpression & ASTNodeWithParent,
970-
) => void
971969
TSImportEqualsDeclaration?: (
972970
node: TSESTree.TSImportEqualsDeclaration & ASTNodeWithParent,
973971
) => void
@@ -992,6 +990,12 @@ export type TSNodeListener = {
992990
) => void
993991
TSInferType?: (node: TSESTree.TSInferType & ASTNodeWithParent) => void
994992
"TSInferType:exit"?: (node: TSESTree.TSInferType & ASTNodeWithParent) => void
993+
TSInstantiationExpression?: (
994+
node: TSESTree.TSInstantiationExpression & ASTNodeWithParent,
995+
) => void
996+
"TSInstantiationExpression:exit"?: (
997+
node: TSESTree.TSInstantiationExpression & ASTNodeWithParent,
998+
) => void
995999
TSInterfaceBody?: (node: TSESTree.TSInterfaceBody & ASTNodeWithParent) => void
9961000
"TSInterfaceBody:exit"?: (
9971001
node: TSESTree.TSInterfaceBody & ASTNodeWithParent,

0 commit comments

Comments
 (0)