🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

bemhint-css-naming

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bemhint-css-naming

Plugin for bemhint which validate css selectors

1.0.0
Source
npm
Version published
Weekly downloads
7
250%
Maintainers
1
Weekly downloads
 
Created
Source

bemhint-css-naming

Плагин проверки именования css классов для bemhint.

  • названия css классов соответствуют БЭМ-нотации;
  • в каждом селекторе присутствует класс текущего блока.

Пример для блока my-block (исключения: test-*):

/* ok */
.my-block
{
    color: red;
}

.b-page .my-block .another-block
{
    color: red;
}

.my-block .another-block > a:hover,
.my-block__elem,
.my-block__elem_mod_val
{
    color: red;
}

.my-block .test-e_x_c_l_u_d_e_d
{
    color: red;
}

/* not ok */

/* invalid block name */
.my-block__elem__elem2
{
    color: black;
}

/* there is no target block */
.another-block
{
    color: green;
}

/* there is no target block */
.test-e_x_c_l_u_d_e_d
{
    color: red;
}

Установка

$ npm install https://github.com/bemhint/bemhint-css-naming.git

Использование

В конфигурационном файле .bemhint.js подключить плагин:

module.exports = {
    plugins: {
        'bemhint-css-naming': true
    }
};

Не проверять соответствие БЭМ-нотации заданные названия классов:

module.exports = {
    plugins: {
        'bemhint-css-naming': {
            excludeClasses: [
                'my-another-block',
                'test-*'
            ]
        }
    }
};

Keywords

bemhint

FAQs

Package last updated on 03 Apr 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts