https://github.com/ewert-online/stylelint-order-66
Stylelint config that sorts related property declarations by grouping them together
https://github.com/ewert-online/stylelint-order-66
Last synced: about 2 months ago
JSON representation
Stylelint config that sorts related property declarations by grouping them together
- Host: GitHub
- URL: https://github.com/ewert-online/stylelint-order-66
- Owner: eWert-Online
- License: mit
- Created: 2024-11-12T15:42:02.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-12-05T15:39:33.000Z (6 months ago)
- Last Synced: 2025-04-12T21:16:58.745Z (about 2 months ago)
- Language: JavaScript
- Size: 61.5 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# stylelint-config-order-66
## Usage
Install [`stylelint`](https://github.com/stylelint/stylelint) and this package to your project:
```sh
npm install stylelint stylelint-config-order-66 --save-dev
```Configure your stylelint configuration file (`stylelint.config.mjs`) to extend this package:
> [!TIP]
> You don't need to install `stylelint-order` nor add `stylelint-order` to `"plugins"` since this package already
> does that for you.```javascript
{
extends: ["stylelint-config-order-66"]
}
```## Severity Options
Default severity level is `warning` but you can use error variant to change severity level to `error`.
```javascript
{
extends: ["stylelint-config-order-66/error"]
}
```## License
MIT