/postcss-important-detect

PostCSS plugin for searching !important in rule declarations

Primary LanguageJavaScriptMIT LicenseMIT

postcss-important-detect Build Status js-standard-style

PostCSS plugin for searching !important in rule declarations

Installation

npm install --save postcss-important-detect

Usage

postcss([postcss-important-detect]).process(css).then(function(result) {
  result.warnings().forEach(function (message) {
    console.log(message.toString());
  });
});

License

MIT

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

This package was initially generated with yeoman and the p generator.