leetcode-format-chrome-extension
leetcode-format-chrome-extension copied to clipboard
Please add option to choose bracket styles
I want my code to be formatted in this way
void addNum(int value) {
}
rather than like this which is currently happens with leetcode formatter
void addNum(int value)
{
cout << "brackets in seperate line from the function name"<<endl;
}
kindly provide this config, in VS code there is an option to do so.