当我使用自动格式时,是否有一个插件告诉IntelliJ不格式化特定的块?

时间:2017-11-20 08:20:07

标签: intellij-idea

我的问题与:How to turn off the Eclipse code formatter for certain sections of Java code?重复,但对于IntelliJ。

IntelliJ是否存在类似的功能?

1 个答案:

答案 0 :(得分:3)

是的,它的工作方式与:

相同
@formatter:on

module.exports = {
    entry: {
        app: ['./src/index.js'],
        decoder: ['broadwayjs/Player/Decoder']
    },
    output: {
        path: path.join(__dirname, 'dist', 'assets'),
        filename: '[name]ReactBundle.js'
    }
}

导航至:

设置> 编辑> 代码样式> 格式化程序控件

enter image description here