在某些情况下禁用stylelint警告

时间:2017-05-10 14:52:47

标签: css sass frontend stylelint linter

我试图在项目中使用autoprefixer。我将缩进设置为2个空格,最大行长度设置为80个字符。问题是这两种设置在某些情况下似乎相互冲突。让我们说我有:

@mixin do-something($value, $otherValue, $anotherValue,
    $yetAnotherValue) {
  border-bottom: ...

此处的警告表示它希望第二行有0个缩进空格:

 2:5  ✖  Expected indentation of 0 spaces     indentation

有没有办法让stylelint忽略这些情况。像"忽略缩进之类的东西在课堂(或mixin)之后的行中缩进被声明为"

1 个答案:

答案 0 :(得分:1)