0

I am trying to set the opening curly brace to start on a new line, but it is not working for me. I have tried to configure prettier, eslint, and .editorconfig but none seems to work for me.

  • I am using VS Code
  • Programming language: JavaScript

With Eslint

 rules: {
        "no-empty": "error",
        "no-multiple-empty-lines": "warn",
        "no-var": "error",
        "prefer-const": "error",
        "brace-style": [2, "allman", { allowSingleLine: false }],
    },
};

My code would be like this:

function foo() 
{

   if() 
      {

         return 0;

      }

}

Anyone with a solution that can work for me?

Egidius
  • 346
  • 4
  • 13
  • 1
    Almost no one does that. You might reconsider. See [JavaScript braces on new line or not?](https://stackoverflow.com/questions/3218756/javascript-braces-on-new-line-or-not) – isherwood Mar 08 '22 at 22:24
  • What is your IDE? May be your IDE forced its own rules? – EzioMercer Mar 09 '22 at 01:44

0 Answers0