简体   繁体   中英

Sass-lint, ignore nesting

How to ignore this error: Class should be nested within its parent Class force-element-nesting . I don't knwo how to ingore this error when I'm overriding soem classes with a lot of nesting in one line like:

// sass-lint:disable ???

.one.two.three.four .soemthing .else,
.one.three.hello .another. else 
{
    //
}

Currently I'm using // sass-lint:disable-all for all blocks.

It should work with this:

// sass-lint:disable force-element-nesting

.one.two.three.four .soemthing .else,
.one.three.hello .another. else 
{
    //
}

// sass-lint:enable force-element-nesting

Enabling again to restore the rule.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM