When `test-case-property-ordering` applies fixes, it does not include trailing comments. Example: ```js { code: "foo", output: "foox", errors: [ /* errors */], parserOptions: {} // intentionally blank } ``` Output: ```js { code: "foo", output: "foox", parserOptions: {}, errors: [ /* errors */], } ``` I was expecting the fix to maintain trailing commas on the lines that were moved.