Stylelint css 中的语法是什么来忽略没有选项的规则,但继续使用带有辅助选项的规则

Stylelint what is syntax in css to ignore rule with no option but keep using rule with secondary options

我正在为一个开源项目编写一个插件,它有一个 .stylelintrc 集,规则如下: "selector-type-no-unknown": true,

但我正在使用离子造型,例如离子网格 {} 所以想添加到我的 css,例如:

/* stylelint-disable selector-type-no-unknown -- ion styles not recognised */
ion-col.total {
    font-weight: bolder;
}
/* stylelint-enable */

但是,add/apply 像 ignoreTypes: ["/ion/"] 这样的辅助选项,而不是完全禁用规则不是更好吗? 在这种情况下,我该如何在 css?

范围内进行操作

或者我在这里遗漏了一些明显的东西?!

In which case how do I do it within the css?

无法从 CSS 中配置规则。规则在 stylelint configuration object 中配置,例如.stylelintrc:

{
  "rules": {
    "selector-type-no-unknown": [ true, { ignoreTypes: ["/^ion-/"] } ]
  }
}

But wouldn't it be better to instead of disabling the rule completely, add/apply a secondary option like ignoreTypes: ["/ion/"]?

如果 ion- 自定义类型选择器在代码库中很常见,那么最好使用辅助选项。否则,使用禁用命令更合适。