https://github.com/cyansalt/stylelint-config
My Stylelint configuration preset
https://github.com/cyansalt/stylelint-config
stylelint stylelint-config
Last synced: 10 months ago
JSON representation
My Stylelint configuration preset
- Host: GitHub
- URL: https://github.com/cyansalt/stylelint-config
- Owner: CyanSalt
- License: isc
- Created: 2021-01-05T03:15:23.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-08-25T02:38:24.000Z (11 months ago)
- Last Synced: 2025-10-08T19:56:02.176Z (10 months ago)
- Topics: stylelint, stylelint-config
- Language: JavaScript
- Homepage:
- Size: 1.86 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
# @cyansalt/stylelint-config
[](https://www.npmjs.com/package/@cyansalt/stylelint-config)
My Stylelint configuration preset.
## Installation
```shell
npm install --save-dev @cyansalt/stylelint-config
```
## Usage
```javascript
// stylelint.config.js
import config from '@cyansalt/stylelint-config'
export default {
rules: {},
overrides: config(),
}
```
## Options
```javascript
// stylelint.config.js
import config from '@cyansalt/stylelint-config'
export default {
rules: {},
overrides: config({
// Whether to enable SCSS rules.
// It will be enabled when `sass` or `sass-embedded` is installed in the project by default.
scss: true,
}),
}
```