Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有Jenkinsfile它是用 Groovy 编写的,但文件名没有适当的扩展名:.groovy. 我怎样才能告诉 IDEA 检查这个文件的 groovy 语法?
Jenkinsfile
.groovy
更新:我也对有关 GoLand IDE 的相同问题感兴趣
在项目侧边栏中,右键单击文件并选择“与文件类型关联”。然后只需从菜单中选择 Groovy,一切就绪。
GoLand 不支持 Groovy,所以这在那儿是不可能的。
如果您在开头添加以下标题注释Jenkinsfile:
#!groovy
IntelliJ IDEA 会自动将此文件识别为 Groovy 源文件。它也应该适用于其他编辑器和 IDE。