In Visual Studio, when you type an opening bracket and press enter, it automatically puts it in a new line.
// before pressing enter
public class Item { /* cursor here */ }
// after pressing enter
public class Item
{
// cursor here
}
How can I reproduce this behavior with Visual Studio Code?