如何禁用 VS Code 中的注释格式?

How to disable comment formatting in VS Code?

我有一个 Java 文件,其中包含如下多行注释:

/** 
 *   original: 0, 2, 1, 4, 3, 5, 7, 6
 *   max:      0, 2, 2, 4, 4, 5, 7, 7
 *   sorted:   0, 1, 2, 3, 4, 5, 6, 7
 *   index:    0, 1, 2, 3, 4, 5, 6, 7
 * 
 *   The chunks are: 0 | 2, 1 | 4, 3 | 5 | 7, 6
 *   @param arr
 *   @return
 */

当我格式化源代码时,它格式化注释如下:

/**
 * original: 0, 2, 1, 4, 3, 5, 7, 6 max: 0, 2, 2, 4, 4, 5, 7, 7 sorted: 0, 1, 2,
 * 3, 4, 5, 6, 7 index: 0, 1, 2, 3, 4, 5, 6, 7
 * 
 * The chunks are: 0 | 2, 1 | 4, 3 | 5 | 7, 6
 * 
 * @param arr
 * @return
 */

有谁知道如何在 VS Code 中禁用格式化注释?谢谢!

我不知道您使用的是什么插件 and/or 格式化程序,但这是 Red Hat 最受欢迎的插件