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
When using "comma_first" lines leading with a comma after a line containing a comment insert a newline. This is causing newlines to be inserted on every save.
Before Format:
changeCollection.add({
name: 'Jonathan' // New line inserted after this line on every save
, age: 25
});
After First Save
changeCollection.add({
name: 'Jonathan' // New line inserted after this line on every save
, age: 25
});
After Second Save:
changeCollection.add({
name: 'Jonathan' // New line inserted after this line on every save
, age: 25
});
The text was updated successfully, but these errors were encountered:
When using "comma_first" lines leading with a comma after a line containing a comment insert a newline. This is causing newlines to be inserted on every save.
Before Format:
After First Save
After Second Save:
The text was updated successfully, but these errors were encountered: