如何忽略此错误:
Class should be nested within its parent Class force-element-nesting
。
当我在一行中覆盖很多嵌套的soem类时,我不知道如何引发这个错误,如:
// sass-lint:disable ???
.one.two.three.four .soemthing .else,
.one.three.hello .another. else
{
//
}
目前我正在使用// sass-lint:disable-all
表示所有块。
答案 0 :(得分:1)
它应该适用于此:
// sass-lint:disable force-element-nesting
.one.two.three.four .soemthing .else,
.one.three.hello .another. else
{
//
}
// sass-lint:enable force-element-nesting
再次启用以恢复规则。