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 #426

Merged
merged 1 commit into from
Oct 15, 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/honest-jobs-grow.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

## 1.3.0

### Minor Changes

- [#423](https://github.com/ota-meshi/eslint-plugin-astro/pull/423) [`d8d0c73`](https://github.com/ota-meshi/eslint-plugin-astro/commit/d8d0c73ee1f7400812b1524a814acaff918f4979) Thanks [@azat-io](https://github.com/azat-io)! - feat: add sort-attributes rule

## 1.2.4

### Patch Changes
Expand Down
6 changes: 5 additions & 1 deletion docs/rules/sort-attributes.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
title: "astro/sort-attributes"
description: "enforce sorting of attributes"
since: "v1.3.0"
---

# astro/sort-attributes

> enforce sorting of attributes

- ❗ <badge text="This rule has not been released yet." vertical="middle" type="error"> **_This rule has not been released yet._** </badge>
- 🔧 The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.

## :book: Rule Details
Expand Down Expand Up @@ -58,6 +58,10 @@ This rule was introduced in eslint-plugin-astro v1.3.0
- [Test source](https://github.com/ota-meshi/eslint-plugin-astro/blob/main/tests/src/rules/sort-attributes.ts)
- [Test fixture sources](https://github.com/ota-meshi/eslint-plugin-astro/tree/main/tests/fixtures/rules/sort-attributes)

## 🚀 Version

This rule was introduced in eslint-plugin-astro v1.3.0

## 🔍 Implementation

- [Rule source](https://github.com/ota-meshi/eslint-plugin-astro/blob/main/src/rules/sort-attributes.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": "1.2.4",
"version": "1.3.0",
"description": "ESLint plugin for Astro component",
"main": "lib/index.js",
"module": "lib/index.mjs",
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"
export const version = "1.2.4"
export const version = "1.3.0"