netbeans格式数组对齐

netbeans格式数组对齐,netbeans,code-formatting,Netbeans,Code Formatting,我有一个关于netbeans格式化的问题,我用它来将我的代码格式化为公司代码约定 但是我在格式化数组中的右括号时遇到了一个问题 当前格式: $array = array( 'item1-moretext' => 1 , 'itm2' => 2 , 'itm3-moretext' => 3 ) ; 这就是我想要的格式: $array = array( 'item1-moretext' =>

我有一个关于netbeans格式化的问题,我用它来将我的代码格式化为公司代码约定

但是我在格式化数组中的右括号时遇到了一个问题

当前格式:

$array = array(
    'item1-moretext' => 1 ,
    'itm2'           => 2 ,
    'itm3-moretext'  => 3
                ) ;
这就是我想要的格式:

$array = array(
    'item1-moretext' => 1 ,
    'itm2'           => 2 ,
    'itm3-moretext'  => 3
) ;
据我所知,我已经尝试了各种可能的组合

提前感谢

可能的副本