force-attribute-nesting:为什么sasslint为我的scss提供了这样的警告

时间:2018-01-21 14:41:05

标签: sass sass-lint

来自文档https://github.com/sasstools/sass-lint/blob/develop/docs/rules/force-attribute-nesting.md#force-attribute-nesting

我改变了

  a[title][href] {
    font-weight: bold;
  }

a {
  &[title][href] {
    font-weight: bold;
  }
}

但是sasslint剧照警告,

  

属性选择器应嵌套在其父属性选择器(force-attribute-nesting)

1 个答案:

答案 0 :(得分:0)

我只是猜测,但我认为你必须分别嵌套这两个属性,如下所示:

a {
  &[title] {
    &[href] {
      ...