Stylelint:创建正则表达式以防止父级 html 、body 标签

发布于 2025-01-10 12:48:35 字数 181 浏览 1 评论 0原文

我正在尝试创建一个 css 规则,以防止 css 应用于 body、html rahe 例如,

body, html {
height: scrollable;
}

我使用 stylelint 作为我的 linter,无法想出一种方法来创建规则,以便在有人向父级标签添加代码时构建错误

I am trying to create a css rule that prevents css to be applied on body, html rahe
For e.g.

body, html {
height: scrollable;
}

I am using stylelint as my linter and unable to think of a way to create a rule so that the builds errors out if someone has added a code to parent level tags

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鱼窥荷 2025-01-17 12:48:35

您可以在 Stylelint 中使用 selector-disallowed-list 规则禁止选择器。

由于该规则接受字符串数组,因此您可以像这样配置它:

{
  "rules": {
    "selector-disallowed-list": ["body", "html", "body, html"],
  }
}

You can use the selector-disallowed-list rule in Stylelint to disallow selectors.

As the rule accepts an array of strings, you can configure it like so:

{
  "rules": {
    "selector-disallowed-list": ["body", "html", "body, html"],
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文