@studiohyperdrive/stylelint-config
Version: 
Studio Hyperdrive StyleLint linting rules/guidelines.
19 lines (15 loc) • 459 B
Markdown
# FEO Styleling config #
## Installation ##
```sh
$ npm install --save-dev @studiohyperdrive/stylelint-config
```
## Usage ##
Create an `stylelint.config.js` file in the root of your project and extend the default Stylelint settings. You may also need to extend the Sass settings (based on your project):
```js
module.exports = {
	"extends": [
		"@studiohyperdrive/stylelint-config",
		"@studiohyperdrive/stylelint-config/lib/sass" // If required
	]
}
```