vscode-phpfmt icon indicating copy to clipboard operation
vscode-phpfmt copied to clipboard

New Line before else

Open christhofer opened this issue 7 years ago • 0 comments

The plugin currently change

if (statement) {
    // do something
}
elseif (other statement) {
    // do other thing
}

into

if (statement) {
    // do something
} elseif (other statement) {
    // do other thing
}

How to turn this off? I can't find it in the documentation.

christhofer avatar Nov 17 '18 14:11 christhofer