I want to change the indentation style format in Visual Studio Code.
I searched but I only find how to change tab sizes .
In other words:
My code :
if (..) {
}
After formatting with visual code
if(..)
{
}
While I expect
if(..){
}