Skip to content

Commit

Permalink
chore: release eslint-plugin-astro (#202)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored May 8, 2023
1 parent cafd97c commit 8ae97fe
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 34 deletions.
5 changes: 0 additions & 5 deletions .changeset/quiet-lobsters-compete.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# eslint-plugin-astro

## 0.26.2

### Patch Changes

- [#201](https://github.com/ota-meshi/eslint-plugin-astro/pull/201) [`cafd97c`](https://github.com/ota-meshi/eslint-plugin-astro/commit/cafd97c515498c3ca11200091754a2bdc6eb9017) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: incompatible with ESLint v8.40 in `astro/semi` rule

## 0.26.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-astro",
"version": "0.26.1",
"version": "0.26.2",
"description": "ESLint plugin for Astro component",
"main": "lib/index.js",
"files": [
Expand Down
60 changes: 32 additions & 28 deletions src/types-for-node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -741,6 +741,12 @@ export type ASTNodeListener = {
"JSXClosingElement:exit"?: (
node: AST.JSXClosingElement & ASTNodeWithParent,
) => void
JSXClosingFragment?: (
node: AST.JSXClosingFragment & ASTNodeWithParent,
) => void
"JSXClosingFragment:exit"?: (
node: AST.JSXClosingFragment & ASTNodeWithParent,
) => void
JSXElement?: (node: AST.JSXElement & ASTNodeWithParent) => void
"JSXElement:exit"?: (node: AST.JSXElement & ASTNodeWithParent) => void
JSXEmptyExpression?: (
Expand All @@ -755,6 +761,8 @@ export type ASTNodeListener = {
"JSXExpressionContainer:exit"?: (
node: AST.JSXExpressionContainer & ASTNodeWithParent,
) => void
JSXFragment?: (node: AST.JSXFragment & ASTNodeWithParent) => void
"JSXFragment:exit"?: (node: AST.JSXFragment & ASTNodeWithParent) => void
JSXIdentifier?: (node: AST.JSXIdentifier & ASTNodeWithParent) => void
"JSXIdentifier:exit"?: (node: AST.JSXIdentifier & ASTNodeWithParent) => void
JSXMemberExpression?: (
Expand All @@ -771,28 +779,22 @@ export type ASTNodeListener = {
"JSXOpeningElement:exit"?: (
node: AST.JSXOpeningElement & ASTNodeWithParent,
) => void
JSXOpeningFragment?: (
node: AST.JSXOpeningFragment & ASTNodeWithParent,
) => void
"JSXOpeningFragment:exit"?: (
node: AST.JSXOpeningFragment & ASTNodeWithParent,
) => void
JSXSpreadAttribute?: (
node: AST.JSXSpreadAttribute & ASTNodeWithParent,
) => void
"JSXSpreadAttribute:exit"?: (
node: AST.JSXSpreadAttribute & ASTNodeWithParent,
) => void
JSXSpreadChild?: (node: AST.JSXSpreadChild & ASTNodeWithParent) => void
"JSXSpreadChild:exit"?: (node: AST.JSXSpreadChild & ASTNodeWithParent) => void
JSXText?: (node: AST.JSXText & ASTNodeWithParent) => void
"JSXText:exit"?: (node: AST.JSXText & ASTNodeWithParent) => void
JSXFragment?: (node: AST.JSXFragment & ASTNodeWithParent) => void
"JSXFragment:exit"?: (node: AST.JSXFragment & ASTNodeWithParent) => void
JSXClosingFragment?: (
node: AST.JSXClosingFragment & ASTNodeWithParent,
) => void
"JSXClosingFragment:exit"?: (
node: AST.JSXClosingFragment & ASTNodeWithParent,
) => void
JSXOpeningFragment?: (
node: AST.JSXOpeningFragment & ASTNodeWithParent,
) => void
"JSXOpeningFragment:exit"?: (
node: AST.JSXOpeningFragment & ASTNodeWithParent,
) => void
Program?: (node: AST.AstroProgram & ASTNodeWithParent) => void
"Program:exit"?: (node: AST.AstroProgram & ASTNodeWithParent) => void
AstroFragment?: (node: AST.AstroFragment & ASTNodeWithParent) => void
Expand Down Expand Up @@ -1525,6 +1527,12 @@ export type AstroNodeListener = {
"JSXClosingElement:exit"?: (
node: AST.JSXClosingElement & ASTNodeWithParent,
) => void
JSXClosingFragment?: (
node: AST.JSXClosingFragment & ASTNodeWithParent,
) => void
"JSXClosingFragment:exit"?: (
node: AST.JSXClosingFragment & ASTNodeWithParent,
) => void
JSXElement?: (node: AST.JSXElement & ASTNodeWithParent) => void
"JSXElement:exit"?: (node: AST.JSXElement & ASTNodeWithParent) => void
JSXEmptyExpression?: (
Expand All @@ -1539,6 +1547,8 @@ export type AstroNodeListener = {
"JSXExpressionContainer:exit"?: (
node: AST.JSXExpressionContainer & ASTNodeWithParent,
) => void
JSXFragment?: (node: AST.JSXFragment & ASTNodeWithParent) => void
"JSXFragment:exit"?: (node: AST.JSXFragment & ASTNodeWithParent) => void
JSXIdentifier?: (node: AST.JSXIdentifier & ASTNodeWithParent) => void
"JSXIdentifier:exit"?: (node: AST.JSXIdentifier & ASTNodeWithParent) => void
JSXMemberExpression?: (
Expand All @@ -1555,28 +1565,22 @@ export type AstroNodeListener = {
"JSXOpeningElement:exit"?: (
node: AST.JSXOpeningElement & ASTNodeWithParent,
) => void
JSXOpeningFragment?: (
node: AST.JSXOpeningFragment & ASTNodeWithParent,
) => void
"JSXOpeningFragment:exit"?: (
node: AST.JSXOpeningFragment & ASTNodeWithParent,
) => void
JSXSpreadAttribute?: (
node: AST.JSXSpreadAttribute & ASTNodeWithParent,
) => void
"JSXSpreadAttribute:exit"?: (
node: AST.JSXSpreadAttribute & ASTNodeWithParent,
) => void
JSXSpreadChild?: (node: AST.JSXSpreadChild & ASTNodeWithParent) => void
"JSXSpreadChild:exit"?: (node: AST.JSXSpreadChild & ASTNodeWithParent) => void
JSXText?: (node: AST.JSXText & ASTNodeWithParent) => void
"JSXText:exit"?: (node: AST.JSXText & ASTNodeWithParent) => void
JSXFragment?: (node: AST.JSXFragment & ASTNodeWithParent) => void
"JSXFragment:exit"?: (node: AST.JSXFragment & ASTNodeWithParent) => void
JSXClosingFragment?: (
node: AST.JSXClosingFragment & ASTNodeWithParent,
) => void
"JSXClosingFragment:exit"?: (
node: AST.JSXClosingFragment & ASTNodeWithParent,
) => void
JSXOpeningFragment?: (
node: AST.JSXOpeningFragment & ASTNodeWithParent,
) => void
"JSXOpeningFragment:exit"?: (
node: AST.JSXOpeningFragment & ASTNodeWithParent,
) => void
AstroFragment?: (node: AST.AstroFragment & ASTNodeWithParent) => void
"AstroFragment:exit"?: (node: AST.AstroFragment & ASTNodeWithParent) => void
AstroHTMLComment?: (node: AST.AstroHTMLComment & ASTNodeWithParent) => void
Expand Down

0 comments on commit 8ae97fe

Please sign in to comment.