diff --git a/README.md b/README.md index efeef5f..469c2c7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # @antebudimir/eslint-plugin-vanilla-extract -An ESLint plugin for enforcing CSS ordering in vanilla-extract css styles. Available presets are for alphabetical and +[![npm version](https://img.shields.io/npm/v/@antebudimir/eslint-plugin-vanilla-extract.svg)](https://www.npmjs.com/package/@antebudimir/eslint-plugin-vanilla-extract) + +An ESLint plugin for enforcing CSS ordering in [vanilla-extract](https://github.com/vanilla-extract-css/vanilla-extract) css styles. 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. ## Features diff --git a/package.json b/package.json index f69d7b9..ba148d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@antebudimir/eslint-plugin-vanilla-extract", - "version": "1.0.1", + "version": "1.0.2", "description": "ESLint plugin for enforcing CSS ordering in vanilla-extract styles", "author": "Ante Budimir", "license": "MIT", diff --git a/src/index.ts b/src/index.ts index 44062cf..98cf442 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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.0.1', + version: '1.0.2', }, rules: { 'alphabetical-order': alphabeticalOrderRule,