Is it possible to customize the formatting of HTML code in VSCode so that it is not formatted by tag attributes by attributes, and the transfer was carried out by the parameter "html.format.wrapLineLength": 120 Example: Now:
<input type="email" onChange={this.handleEmailChange} id="inputEmail" className="form-control" placeholder="Email address" required autofocus /> It is necessary:
<label for="inputEmail" className="sr-only">Email address</label> <input type="email" onChange={this.handleEmailChange} id="inputEmail" className="form-control" placeholder="Email address" required autofocus /> <label for="inputPassword" className="sr-only">Password</label> <input type="password" onChange={this.handlePasswordChange} id="inputPassword" className="form-control" placeholder="Password" required /> I tried the parameter: "html.format.unformatted": "input", did NOT work.

