Intellij 代码检查如何决定来自 .css 文件的选择器?
How does Intellij code inspection decide on selectors from .css files?
我有一个 css
文件,其中有一个 class App-logo
的选择器
.App-logo {
animation: App-logo-spin infinite 20s linear;
height: 75px;
}
文件在 resources/public
目录中。
在resources
目录下,有一个名为testform.vtl
的文件(velocity文件),里面有如下几行:
<div class="App-header" >
<img src="favicon.png" class="App-logo pull-left" alt="logo" />
<h2>Data Insight - Known Issues Console </h2>
</div>
当我在 Intellij 中 运行 代码检查时,它给了我警告 Selector app-logo is never used
。为什么是这样?是否有我可以在 Intellij 中使用的配置,使其查看这些 vtl 文件(如果这确实是问题所在)?
IDE 仅查找样式表中的 CSS 选择器用法和 HTML files/fragments;它不会检查纯文本文件和未知类型的文件。我刚刚检查过 - CSS 在 Velocity 模板中正确找到用法:
确保在 设置中将 *.vtl
模式添加到 Velocity 模板 文件类型 |编辑|文件类型
我有一个 css
文件,其中有一个 class App-logo
.App-logo {
animation: App-logo-spin infinite 20s linear;
height: 75px;
}
文件在 resources/public
目录中。
在resources
目录下,有一个名为testform.vtl
的文件(velocity文件),里面有如下几行:
<div class="App-header" >
<img src="favicon.png" class="App-logo pull-left" alt="logo" />
<h2>Data Insight - Known Issues Console </h2>
</div>
当我在 Intellij 中 运行 代码检查时,它给了我警告 Selector app-logo is never used
。为什么是这样?是否有我可以在 Intellij 中使用的配置,使其查看这些 vtl 文件(如果这确实是问题所在)?
IDE 仅查找样式表中的 CSS 选择器用法和 HTML files/fragments;它不会检查纯文本文件和未知类型的文件。我刚刚检查过 - CSS 在 Velocity 模板中正确找到用法:
确保在 设置中将 *.vtl
模式添加到 Velocity 模板 文件类型 |编辑|文件类型