docs 📝: add demo gif to README

This commit is contained in:
Ante Budimir 2025-03-10 20:04:45 +02:00
parent 4df6af76f7
commit fb77b52800
4 changed files with 11 additions and 3 deletions

View file

@ -5,9 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.4.6] - 2025-03-10
- Add demo gif to README ()
## [1.4.5] - 2025-03-10
- Add GitHub Actions workflow for linting and testing ()
- Add GitHub Actions workflow for linting and testing (58249ba)
## [1.4.4] - 2025-03-10

View file

@ -4,6 +4,10 @@
An ESLint plugin for enforcing best practices in [vanilla-extract](https://github.com/vanilla-extract-css/vanilla-extract) CSS styles, including CSS property ordering and additional linting rules. Available presets are for alphabetical and [concentric](https://rhodesmill.org/brandon/2011/concentric-css/) CSS ordering. The plugin also supports a custom group ordering option based on groups available in [concentric CSS](src/css-rules/concentric-order/concentric-groups.ts).
## Demo
![Plugin Demo](https://github.com/user-attachments/assets/93ba118d-84df-4da0-ac68-fdb429e581d6)
## Features
- Enforces CSS property ordering in vanilla-extract style objects with two available presets:

View file

@ -1,6 +1,6 @@
{
"name": "@antebudimir/eslint-plugin-vanilla-extract",
"version": "1.4.5",
"version": "1.4.6",
"description": "ESLint plugin for enforcing best practices in vanilla-extract CSS styles, including CSS property ordering and additional linting rules.",
"author": "Ante Budimir",
"license": "MIT",

View file

@ -5,7 +5,7 @@ import customOrderRule from './css-rules/custom-order/rule-definition.js';
export const vanillaExtract = {
meta: {
name: '@antebudimir/eslint-plugin-vanilla-extract',
version: '1.4.5',
version: '1.4.6',
},
rules: {
'alphabetical-order': alphabeticalOrderRule,