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
This is basically the same as #428, but for the yield statement.
The beautifier is changing yield* myFunc(); to yield * myFunc();, which then does not pass our linting rules (http://eslint.org/docs/rules/yield-star-spacing). Ideally, this should not be changed at all.
The text was updated successfully, but these errors were encountered:
This is basically the same as #428, but for the
yield
statement.The beautifier is changing
yield* myFunc();
toyield * myFunc();
, which then does not pass our linting rules (http://eslint.org/docs/rules/yield-star-spacing). Ideally, this should not be changed at all.The text was updated successfully, but these errors were encountered: