问题
文件中的自动缩进.vm
并不像我想要的那样。下面我添加了自动格式化的文件以及我想要的格式。
以下代码片段由 IntelliJ 自动格式化:
#styleTitle('sample-title')
#@styleDescription()
A short description of the component
#end
#@styleComponent('/components/molecules/sampleComponent/sampleComponent', {
"headline": 'A headline title',
"alertText": "Alert text example",
"link" : {
"href": "www.stackoverflow.com",
"text": "Click here!"
}
})#end
我想要的是:
#styleTitle('sample-title')
#@styleDescription()
A short description of the component
#end
#@styleComponent('/components/molecules/sampleComponent/sampleComponent', {
"headline": 'A headline title',
"alertText": "Alert text example",
"link" : {
"href": "www.stackoverflow.com",
"text": "Click here!"
}
})#end
问题
我找不到任何额外的配置IntelliJ IDEA | Preferences | Editor | Code Style | Velocity
来调整不同代码块的缩进。
如何在 IntelliJ 中为特定文件类型手动配置代码样式以及这样的配置文件是什么样的?