顺风在规则中添加@顺风css,标记为未知。 如何避免这种错误?
如styles.css
@tailwind起飞前的;
@tailwind公用事业;
顺风在规则中添加@顺风css,标记为未知。 如何避免这种错误?
如styles.css
@tailwind起飞前的;
@tailwind公用事业;
当前回答
只需进入设置(ctrl +,)的快捷方式。
打开设置,搜索“未知”,第一个结果应该是你要找的:CSS > Lint: unknown At Rules:
将其更改为忽略:
完成了!干杯!
还是不明白?跟着图片走
其他回答
SCSS
如果你正在使用顺风的SASS,你仍然会在你的.scss文件中看到错误,使用这些前面的答案。
要正确地lint SASS,你可以添加到你的VS Code设置:
"scss.validate": false,
按照@hasusuf的指示,但关闭默认的VS Code验证器:
添加以下3个设置:
"css.validate": false,
"scss.validate": false,
"stylelint.enable": true,
2022 - 05年更新
官方的Tailwind CSS智能感知扩展现在扩展了内置的CSS语言模式来修复这些lint警告,而不会失去任何VS Code的默认智能感知功能。
查看推荐的VS代码设置部分,为工作空间中的所有CSS文件启用此功能。
如果您不想安装额外的扩展,我在下面保留了我最初的答案,但自从v0.8.0以来,它不再与内置的CSS支持冲突,因此这是我推荐的方法。
没有扩展的旧答案
Visual Studio Code允许您为CSS语言服务定义自定义数据。
例如,在工作空间的.vscode/settings中。Json,你可以添加:
{
"css.customData": [".vscode/css_custom_data.json"]
}
然后在。vscode/css_custom_data中。json添加:
{
"atDirectives": [
{
"name": "@tailwind",
"description": "Use the @tailwind directive to insert Tailwind’s `base`, `components`, `utilities`, and `screens` styles into your CSS.",
"references": [
{
"name": "Tailwind’s “Functions & Directives” documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives/#tailwind"
}
]
}
]
}
请注意,您可能需要重新加载VS Code窗口以获取更改。
下面是.vscode/css_custom_data的副本。Json,它包含了所有带有简短用法片段的指令(反过来在vs code中突出显示语法):
{
"version": 1.1,
"atDirectives": [
{
"name": "@tailwind",
"description": "Use the `@tailwind` directive to insert Tailwind's `base`, `components`, `utilities` and `screens` styles into your CSS.",
"references": [
{
"name": "Tailwind Documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives#tailwind"
}
]
},
{
"name": "@responsive",
"description": "You can generate responsive variants of your own classes by wrapping their definitions in the `@responsive` directive:\n```css\n@responsive {\n .alert {\n background-color: #E53E3E;\n }\n}\n```\n",
"references": [
{
"name": "Tailwind Documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives#responsive"
}
]
},
{
"name": "@screen",
"description": "The `@screen` directive allows you to create media queries that reference your breakpoints by **name** instead of duplicating their values in your own CSS:\n```css\n@screen sm {\n /* ... */\n}\n```\n…gets transformed into this:\n```css\n@media (min-width: 640px) {\n /* ... */\n}\n```\n",
"references": [
{
"name": "Tailwind Documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives#screen"
}
]
},
{
"name": "@variants",
"description": "Generate `hover`, `focus`, `active` and other **variants** of your own utilities by wrapping their definitions in the `@variants` directive:\n```css\n@variants hover, focus {\n .btn-brand {\n background-color: #3182CE;\n }\n}\n```\n",
"references": [
{
"name": "Tailwind Documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives#variants"
}
]
}
]
}
以下是结果预览:
唯一缺少的指令是@apply,因为它是在CSS属性级别声明的。CSS语言服务可能不会在属性级别上使用atRules,也不会接收这样的指令。
你只需要把这些加到
点击文件> preferences > setting.json
“css.lint。unknownAtRules”:“忽略”, “css。验证”:没错, “scss。验证”:没错,
在setting.json中添加这些代码
1. 只需进入设置(ctrl +,)的快捷方式。 2. 在搜索栏中搜索CSS。 3.查找(CSS> Lint:未知At规则) 4. 从下拉选项中选择“忽略”。
这忽略了警告。如果你不介意的话。
当前推荐的VS代码设置(更新于2022年12月15日)
官方顺风CSS智能感知VS文档
使用这些文件。associations设置告诉VS Code总是在顺风CSS模式下打开。CSS文件:
"files.associations": {
"*.css": "tailwindcss"
}
提示:按Ctrl +,从VS Code打开设置;然后,输入“Files Associations”。
默认情况下,VS Code在编辑“字符串”内容时不会触发补全,例如在JSX属性值中。更新编辑器。quickrecommendations设置可以改善您的体验:
"editor.quickSuggestions": {
"strings": true
}
结合两者,你的设置。Json文件(如果是新的)将看起来像这样:
{
"files.associations": {
"*.css": "tailwindcss"
},
"editor.quickSuggestions": {
"strings": true
}
}
来源:https://marketplace.visualstudio.com/items?itemName=bradlc.vscode-tailwindcss
以前推荐的VS代码设置(已弃用)
VS Code有内置的CSS验证,当使用tailwind特定的语法时可能会显示错误,比如@apply。你可以在css中禁用它。验证设置:
"css.validate": false
“编辑器。quickrecommendations”设置建议保持不变。结合两者,你的设置。Json文件(如果是新的)看起来类似这样:
{
"css.validate": false,
"editor.quickSuggestions": {
"strings": true
}
}