1.0.1 • Published 9 years ago

drycss v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
9 years ago

drycss

A lint tool to help point out duplicate declaration block.

Installation

local : npm install drycss

global : npm install drycss -g

Rule

.foo {
  background-color: green;
  color: black;
}

.bar {
  text-align: center;
}

@media (min-width: 768px) {

  .baz {
    background-color: red;
    color: yellow;
  }

  #qux {
    position: relative;
  }

  /* can be merged with declaration block .baz */
  .norf {
    background-color: red;
    color: yellow;
  }

  /* can be merged with declaration block #qux */
  hr {
    position: relative;
  }
}

Usage

Lint a source file

drycss --source main.css

or

drycss -s main.css