-
- Notifications
You must be signed in to change notification settings - Fork 31
Open
Description
When test-case-property-ordering
applies fixes, it does not include trailing comments.
Example:
{ code: "foo", output: "foox", errors: [ /* errors */], parserOptions: {} // intentionally blank }
Output:
{ code: "foo", output: "foox", parserOptions: {}, errors: [ /* errors */], }
I was expecting the fix to maintain trailing commas on the lines that were moved.