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
#1423 is a perfect example of the problem. The CLI takes dashes (such as--wrap-attributes force-expand-multiline), but the beautifier only takes underscores in the names (such as { "wrap_attributes": "force-expand-multiline" }).
This cause tons of confusion and spurious bug reports. The beautifier should convert all dashes in options to underscores before processing. This will result in variability of inputs but will reduce user pain.
The text was updated successfully, but these errors were encountered:
Description
#1423 is a perfect example of the problem. The CLI takes dashes (such as
--wrap-attributes force-expand-multiline
), but the beautifier only takes underscores in the names (such as{ "wrap_attributes": "force-expand-multiline" }
).This cause tons of confusion and spurious bug reports. The beautifier should convert all dashes in options to underscores before processing. This will result in variability of inputs but will reduce user pain.
The text was updated successfully, but these errors were encountered: