Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samikeijonen/stylelint-config
Foxland Stylelint Config
https://github.com/samikeijonen/stylelint-config
stylelint stylelint-config stylelint-order
Last synced: 2 days ago
JSON representation
Foxland Stylelint Config
- Host: GitHub
- URL: https://github.com/samikeijonen/stylelint-config
- Owner: samikeijonen
- Created: 2018-12-12T11:03:54.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2023-01-06T01:39:03.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T12:34:03.749Z (24 days ago)
- Topics: stylelint, stylelint-config, stylelint-order
- Language: JavaScript
- Size: 1.41 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
Awesome Lists containing this project
README
# Foxland Stylelint Config
## Dependencies
1. [Node & NPM](https://www.npmjs.com/get-npm) - 3rd party dependencies are managed through NPM, so you will need that installed globally
2. [Stylelint](https://stylelint.io/) - as this is a config extention for Stylelint, you will need Stylelint installed in your main project in order for it to work.## Installation
First, install Stylelint:
```
// NPM
npm install stylelint --save-dev// Yarn
yarn add stylelint
```Then install the Foxland stylelint config:
```
// NPM
npm install @foxland/stylelint-config --save-dev
```## Usage
Add the following to your `.stylelintrc` file:
```js
{
"extends": "@foxland/stylelint-config"
}
```