https://github.com/cyansalt/stylelint-plugin-aurora
Various Stylelint rules in one plugin.
https://github.com/cyansalt/stylelint-plugin-aurora
stylelint stylelint-plugin
Last synced: 5 months ago
JSON representation
Various Stylelint rules in one plugin.
- Host: GitHub
- URL: https://github.com/cyansalt/stylelint-plugin-aurora
- Owner: CyanSalt
- License: isc
- Created: 2021-06-25T07:09:22.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-04-01T13:48:18.000Z (over 1 year ago)
- Last Synced: 2025-09-16T23:49:59.839Z (10 months ago)
- Topics: stylelint, stylelint-plugin
- Language: TypeScript
- Homepage:
- Size: 1.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# stylelint-plugin-aurora
[](https://www.npmjs.com/package/stylelint-plugin-aurora)
Various Stylelint rules in one plugin.
## Installation
```shell
npm install --save-dev eslint-plugin-aurora
```
## Usage
```js
// stylelint.config.js
export default {
plugins: [
'stylelint-plugin-aurora',
],
rules: {
'aurora/selector-nested-combinator-position': 'as-prefix',
}
}
```
## Rules
- [`declaration-property-value-no-magic`](./docs/rules/declaration-property-value-no-magic.md) - Disallow magic values in declaration properties 🔧
- [`selector-nested-combinator-position`](./docs/rules/selector-nested-combinator-position.md) - Enforce the position of combinators in nesting 🔧
*🔧 means that the rule could be fixed automatically*.