Skip to content
This repository has been archived by the owner on Jun 7, 2022. It is now read-only.

wearewondrous/wondrous-stylelint-config

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wondrous-stylelint-config

Sass Guidelines shareable config for stylelint.

A stylelint config based on sass-guidelin.es and stylelint-config-sass-guidelines.

Installation

$ npm install --save @wearewondrous/stylelint-config

Usage

Set your stylelint config to:

{
  "extends": "@wearewondrous/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:

{
  "extends": "@wearewondrous/stylelint-config",
  "rules": {
    "indentation": "tab",
    "number-leading-zero": null
  }
}

Creator

WONDROUS