File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/prettier-plugin-java/src
website/src/pages/playground Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ export default {
256256 arrowParens : {
257257 type : "choice" ,
258258 category : "Java" ,
259- default : "avoid " ,
259+ default : "always " ,
260260 choices : [
261261 { value : "always" , description : "" } ,
262262 { value : "avoid" , description : "" }
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ function Inner() {
7676 const [ tabWidth , setTabWidth ] = useState ( initialState . tabWidth ?? 2 ) ;
7777 const [ useTabs , setUseTabs ] = useState ( initialState . useTabs ?? false ) ;
7878 const [ arrowParens , setArrowParens ] = useState (
79- initialState . arrowParens ?? ArrowParens . Avoid
79+ initialState . arrowParens ?? ArrowParens . Always
8080 ) ;
8181 const [ trailingComma , setTrailingComma ] = useState (
8282 initialState . trailingComma ?? TrailingComma . All
You can’t perform that action at this time.
0 commit comments