Autofix for jsx-sort-props doesn't respect comments. For example: ```jsx <foo b={1} // comment for a a={0} /> ``` will be fixed like this: ```jsx <foo a={0} // comment for a b={1} /> ``` But I think it should be like this: ```jsx <foo // comment for a a={0} b={1} /> ```