leetcode-format-chrome-extension icon indicating copy to clipboard operation
leetcode-format-chrome-extension copied to clipboard

Please add option to choose bracket styles

Open alpha951 opened this issue 2 years ago • 0 comments

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.

alpha951 avatar Jan 28 '23 05:01 alpha951