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

lowmess/stylelint-config-lowmess

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stylelint-config-lowmess

This stylelint config contains rules specific to how I write my CSS. It is intended to be used with Prettier.

To see the rules that this config uses, please read the config itself.

Installation

npm install stylelint-config-lowmess --save-dev

Usage

Create a .stylelintrc file at the base of your project:

{
  "extends": "stylelint-config-lowmess"
}

Extending the config

Simply add a "rules" key to your config, then add your overrides and additions there.

For example, to change the indentation to tabs:

{
  "extends": "stylelint-config-lowmess",
  "rules": {
    "indentation": "tab"
  }
}