Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release eslint-plugin-astro #332

Merged
merged 1 commit into from
Mar 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/slimy-pillows-change.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.33.0

### Minor Changes

- [#322](https://github.com/ota-meshi/eslint-plugin-astro/pull/322) [`d55a51e`](https://github.com/ota-meshi/eslint-plugin-astro/commit/d55a51eb6903f30a90d81f0a9731520e45a7de83) Thanks [@oanaOM](https://github.com/oanaOM)! - feat add `astro/missing-client-only-directive-value` rule

## 0.32.0

### Minor Changes
Expand Down
6 changes: 5 additions & 1 deletion docs/rules/missing-client-only-directive-value.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
title: "astro/missing-client-only-directive-value"
description: "the client:only directive is missing the correct component's framework value"
since: "v0.33.0"
---

# astro/missing-client-only-directive-value

> the client:only directive is missing the correct component's framework value

- ❗ <badge text="This rule has not been released yet." vertical="middle" type="error"> **_This rule has not been released yet._** </badge>
- ⚙ This rule is included in `"plugin:astro/recommended"`.

## 📖 Rule Details
Expand Down Expand Up @@ -42,6 +42,10 @@ Nothing.

- [Astro Documentation | Template Directives Reference > client:only](https://docs.astro.build/en/reference/directives-reference/#clientonly)

## 🚀 Version

This rule was introduced in eslint-plugin-astro v0.33.0

## 🔍 Implementation

- [Rule source](https://github.com/ota-meshi/eslint-plugin-astro/blob/main/src/rules/missing-client-only-directive-value.ts)
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.32.0",
"version": "0.33.0",
"description": "ESLint plugin for Astro component",
"main": "lib/index.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
// This file has been automatically generated,
// in order to update its content execute "npm run update"
export const name = "eslint-plugin-astro" as const
export const version = "0.32.0" as const
export const version = "0.33.0" as const