Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 411 Bytes

File metadata and controls

18 lines (15 loc) · 411 Bytes

Ignore errors for sloppy mode syntax (#11750 by @fisker, #11778 by @sosukesuzuki)

// Input
function foo() { var bar = 1; delete bar; }

// Prettier stable
SyntaxError: Deleting local variable in strict mode. (1:31)
> 1 | function foo() { var bar = 1; delete bar; }
    |                               ^

// Prettier main
function foo() {
  var bar = 1;
  delete bar;
}