We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
prettier/prettier#11032
Prettier 2.2.1 Playground link --parser babel Input: const LongVar = LongLongLongLongLongFun(param, { key1: "value1" }); type LongType = LongLongLongLongLongLongType<Param, { key1: Value1, }> Output: const LongVar = LongLongLongLongLongFun(param, { key1: "value1", }); type LongType = LongLongLongLongLongLongType< Param, { key1: Value1, } >; Expected behavior: The output should be same as input I think. const LongVar = LongLongLongLongLongFun(param, { key1: "value1" }); type LongType = LongLongLongLongLongLongType<Param, { key1: Value1, }>
Prettier 2.2.1 Playground link
--parser babel
Input:
const LongVar = LongLongLongLongLongFun(param, { key1: "value1" }); type LongType = LongLongLongLongLongLongType<Param, { key1: Value1, }>
Output:
const LongVar = LongLongLongLongLongFun(param, { key1: "value1", }); type LongType = LongLongLongLongLongLongType< Param, { key1: Value1, } >;
Expected behavior:
The output should be same as input I think.
The text was updated successfully, but these errors were encountered:
same happens in class declarations and it really looks bad Happens after upgrade form 2.2.1 -> 2.3.2
Sorry, something went wrong.
same happens in class declarations and it really looks bad
prettier/prettier#11032 (comment)
Shouldn't this be part of issue #444?
No branches or pull requests
prettier/prettier#11032
The text was updated successfully, but these errors were encountered: