当我使用stylelint-config-recommended
通过webpack运行stylefmt和stylefmt-loader时会发生这种情况
答案 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"
}