Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atolye15/stylelint-config
Default stylelint config used by @atolye15
https://github.com/atolye15/stylelint-config
atolye15 scss stylelint stylelint-config
Last synced: 5 days ago
JSON representation
Default stylelint config used by @atolye15
- Host: GitHub
- URL: https://github.com/atolye15/stylelint-config
- Owner: atolye15
- License: mit
- Created: 2019-06-18T07:58:04.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-12-16T05:28:05.000Z (about 1 month ago)
- Last Synced: 2025-01-07T20:09:03.400Z (13 days ago)
- Topics: atolye15, scss, stylelint, stylelint-config
- Language: JavaScript
- Homepage: https://www.atolye15.com
- Size: 122 KB
- Stars: 46
- Watchers: 9
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# stylelint-config
> Atölye15 shareable config for stylelint.
Configuration rules to ensure your CSS code is compliant with Atölye15's code style.
## Installation
```console
yarn add @atolye15/stylelint-config --dev# Or with npm:
npm install @atolye15/stylelint-config --save-dev
```## Usage
Set your stylelint config to:
```json
{
"extends": "@atolye15/stylelint-config"
}
```### Extending the config
Simply add a `"rules"` key to your config and add your overrides there.
For example, to change the `indentation` to tabs and turn off the `number-leading-zero` rule:
```json
{
"extends": "@atolye15/stylelint-config",
"rules": {
"indentation": "tab",
"number-leading-zero": null
}
}
```## [Changelog](https://github.com/atolye15/stylelint-config/releases)
## [License](LICENSE)