Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/niksy/stylelint-config-nitpick
Stylelint config for my projects.
https://github.com/niksy/stylelint-config-nitpick
Last synced: about 2 months ago
JSON representation
Stylelint config for my projects.
- Host: GitHub
- URL: https://github.com/niksy/stylelint-config-nitpick
- Owner: niksy
- License: mit
- Created: 2016-01-17T23:36:46.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-11-16T12:42:31.000Z (about 2 years ago)
- Last Synced: 2024-04-13T22:30:48.860Z (9 months ago)
- Language: JavaScript
- Size: 103 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# stylelint-config-nitpick
[![Build Status][ci-img]][ci]
[Stylelint][stylelint] config for my projects.
## Install
```sh
npm install stylelint@16 stylelint-config-nitpick --save-dev
```## Usage
Add this config to your `.stylelintrc`:
```json
{
"extends": [
"stylelint-config-nitpick"
]
}
```If you’re using [presets](#presets), **it’s highly recommended to apply default
preset:**```json
{
"extends": [
"stylelint-config-nitpick",
"stylelint-config-nitpick/other-preset"
]
}
```## Presets
In addition to default preset, there are also specific presets. You can apply
multiple presets with [Stylelint `extends` option][stylelint-extends].### SCSS
SCSS specific rules.
```json
{
"extends": [
"stylelint-config-nitpick/scss"
]
}
```## License
MIT © [Ivan Nikolić](http://ivannikolic.com)
[ci]: https://github.com/niksy/stylelint-config-nitpick/actions?query=workflow%3ACI
[ci-img]: https://github.com/niksy/stylelint-config-nitpick/workflows/CI/badge.svg?branch=master
[stylelint]: http://stylelint.io/
[stylelint-extends]: https://stylelint.io/user-guide/configure#extends