Socket
Socket
Sign inDemoInstall

postcss-bem-linter

Package Overview
Dependencies
1
Maintainers
2
Versions
31
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.0 to 1.0.1

4

CHANGELOG.md

@@ -0,1 +1,5 @@

=== 1.0.1 (August 30, 2015)
* Use PostCSS's improved warning API to provide more precise locations
=== 1.0.0 (August 26, 2015)

@@ -2,0 +6,0 @@

5

lib/validate-selectors.js

@@ -30,3 +30,6 @@ var listSequences = require('./list-sequences');

'Invalid component selector "' + selector + '"',
{ node: config.rule }
{
node: config.rule,
word: selector,
}
);

@@ -33,0 +36,0 @@ });

@@ -13,3 +13,6 @@ var listSequences = require('./list-sequences');

'Invalid utility selector "' + selector + '"',
{ node: rule }
{
node: rule,
word: selector,
}
);

@@ -16,0 +19,0 @@ });

{
"name": "postcss-bem-linter",
"version": "1.0.0",
"version": "1.0.1",
"description": "A BEM linter for postcss",

@@ -5,0 +5,0 @@ "files": [

@@ -1,2 +0,2 @@

# postcss-bem-linter
# postcss-bem-linter

@@ -24,2 +24,4 @@ [![Build Status](https://travis-ci.org/postcss/postcss-bem-linter.svg?branch=master)](https://travis-ci.org/postcss/postcss-bem-linter)

Version 1.0.0+ is compatible with PostCSS 5+. (Earlier versions are compatible with PostCSS 4.)
This plugin registers warnings via PostCSS. Therefore, you'll want to use it with a PostCSS runner that prints warnings (e.g. [`gulp-postcss`](https://github.com/postcss/gulp-postcss)) or another PostCSS plugin that prints warnings (e.g. [`postcss-reporter`](https://github.com/postcss/postcss-reporter)).

@@ -26,0 +28,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc