escodegen icon indicating copy to clipboard operation
escodegen copied to clipboard

Defensive Semicolon support with JSHint

Open Exagram opened this issue 9 years ago • 0 comments

Do you support options to preserve defensive semi-colons and pass JSHint?

Before - passes JSHint:

;(function() { ...

After - fails JSHint:

;
(function() {...

Exagram avatar Sep 25 '15 15:09 Exagram