From 5a2a9d401738509b3e0b8af14e06c14cf780cbf6 Mon Sep 17 00:00:00 2001 From: Aleks Hudochenkov Date: Thu, 21 Oct 2021 21:11:34 +0200 Subject: [PATCH] Capitalize Stylelint name --- README.md | 10 +++++----- package.json | 2 +- rules/properties-order/README.md | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 592cd19..71b40d4 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ [![npm version][npm-version-img]][npm] [![npm downloads last month][npm-downloads-img]][npm] -A plugin pack of order-related linting rules for [stylelint]. Every rule supports autofixing (`stylelint --fix`). +A plugin pack of order-related linting rules for [Stylelint]. Every rule supports autofixing (`stylelint --fix`). ## Installation -1. If you haven't, install [stylelint]: +1. If you haven't, install [Stylelint]: ``` npm install stylelint --save-dev @@ -20,7 +20,7 @@ npm install stylelint-order --save-dev ## Usage -Add `stylelint-order` to your stylelint config `plugins` array, then add rules you need to the rules list. All rules from stylelint-order need to be namespaced with `order`. +Add `stylelint-order` to your Stylelint config `plugins` array, then add rules you need to the rules list. All rules from stylelint-order need to be namespaced with `order`. ```json { @@ -67,10 +67,10 @@ All these configs have `properties-order` configured with logical properties gr ## Thanks -`properties-order` and `properties-alphabetical-order` code and README were based on the `declaration-block-properties-order` rule which was a core rule prior to stylelint 8.0.0. +`properties-order` and `properties-alphabetical-order` code and README were based on the `declaration-block-properties-order` rule which was a core rule prior to Stylelint 8.0.0. [npm-version-img]: https://img.shields.io/npm/v/stylelint-order.svg [npm-downloads-img]: https://img.shields.io/npm/dm/stylelint-order.svg [npm]: https://www.npmjs.com/package/stylelint-order -[stylelint]: https://stylelint.io/ +[Stylelint]: https://stylelint.io/ [postcss-sorting]: https://github.com/hudochenkov/postcss-sorting diff --git a/package.json b/package.json index 6fc81d2..f453ee6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "stylelint-order", "version": "4.1.0", - "description": "A collection of order related linting rules for stylelint.", + "description": "A collection of order related linting rules for Stylelint.", "keywords": [ "stylelint-plugin", "stylelint", diff --git a/rules/properties-order/README.md b/rules/properties-order/README.md index 862bdc4..e38f97d 100644 --- a/rules/properties-order/README.md +++ b/rules/properties-order/README.md @@ -49,7 +49,7 @@ Array of unprefixed property names or group objects. Within an order array, you For `threshold`, refer to the [`emptyLineMinimumPropertyThreshold` documentation](#emptylineminimumpropertythreshold-number). - If this option is not working as expected, make sure you don't have `declaration-empty-line-before` configured in a conflicting way in your stylelint config or config you're extending (e. g. [`stylelint-config-standard`](https://github.com/stylelint/stylelint-config-standard)). + If this option is not working as expected, make sure you don't have `declaration-empty-line-before` configured in a conflicting way in your Stylelint config or config you're extending (e. g. [`stylelint-config-standard`](https://github.com/stylelint/stylelint-config-standard)). * `noEmptyLineBetween`: If `true`, properties within group should not have empty lines between them.