You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to mark an if or else branch as ignored, the /* v8 ignore start */…/* v8 ignore stop */ comments currently need to be positioned outside the {…}, which is awkward (especially when formatting with Prettier):
It would be nicer if the else, {, and } tokens were automatically considered part of the ignored range if the statements inside are ignored, and the comments could be placed more naturally:
In order to mark an
if
orelse
branch as ignored, the/* v8 ignore start */
…/* v8 ignore stop */
comments currently need to be positioned outside the{
…}
, which is awkward (especially when formatting with Prettier):It would be nicer if the
else
,{
, and}
tokens were automatically considered part of the ignored range if the statements inside are ignored, and the comments could be placed more naturally:The text was updated successfully, but these errors were encountered: