Stylelint:创建正则表达式以防止父级 html 、body 标签
我正在尝试创建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 Stylelint 中使用 selector-disallowed-list 规则禁止选择器。
由于该规则接受字符串数组,因此您可以像这样配置它:
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: