Conversation
|
@CiGit I've been using the readonly feature and prettier-vscode is completely busted for me. Any chance you could merge this PR? |
|
@CiGit Please update to prettier 1.17. |
|
Hey, I had also opened an issue concerning prettier and the |
|
Can we please get this updated? Having it behind like this is causing issues for my team. |
|
Regarding the support of prettier 1.17, I'm also having problemas with the dynamic import syntax, that now breaks when the line is too long: 1.16: const MyPage = React.lazy(() =>
import('./pages/name/other/long/name/Index')
);1.17: const MyPage = React.lazy(() =>
import(
'./pages/name/other/long/name/Index'
));Will this situation be fixed in this issue? |
|
Thanks, |
Fixes prettier#522 Slightly different implementation of prettier#561
Add .github folder
* Create bare-bones pull request template This template almost certainly needs fleshing out, but I figured a good place to start was making sure people run tests and making sure they update the Changelog. * Create separate .github folder for issue/pr templates
|
Installing newest |
|
@CiGit Updated! |
|
Thank you ! |
Typescript 3.4 added support for the readonly modifer, which prettier 1.17 was released to support. Without this prettier crashes on files using the readonly modifer.