Stylelint:未定义的规则font-family-no-missing-generic-family-keyword

时间:2017-11-28 16:07:44

标签: css webpack postcss stylelint

当我使用stylelint-config-recommended

通过webpack运行stylefmt和stylefmt-loader时会发生这种情况

enter image description here

2 个答案:

答案 0 :(得分:3)

font-family-no-missing-generic-family-keyword 8.3.0中添加了

stylelint;如果您使用的是最新版本的stylelint-config-recommended,则需要将stylelint的版本更新为8.3.x才能匹配。

如果stylefmt安装了自己的stylelint,您可以使用例如yarn来覆盖子依赖项。 stylelint-config-recommended支持public BigDecimal determinePorpertyValue(XSSFCell cell) { String rawValue = cell.getRawValue(); return rawValue == null ? null : BigDecimal.valueOf(cell.getNumericCellValue()); } 或降级{{1}}版本。

答案 1 :(得分:1)

stylefmt(最新发布的版本是6.0)使用了之前版本的stylelint。在该版本中,该规则不存在。

以下是向stylefmt报告的问题:https://github.com/morishitter/stylefmt/issues/334

如果您正在使用Yarn,则可以将该依赖项强制为8.3.0,您将解决该问题。要强制它,您需要在package.json中添加resolution属性并指定stylelint版本:

  "resolutions": {
    "stylelint": "8.3.0"
  }