prettier reads and honors editorconfig: https://prettier.io/docs/en/api.html#prettierresolveconfigfilepath--options pprettier doesn't seem to. So if you have in your `.editorconfig`: ``` [*.{js,ts,jsx,tsx}] max_line_length = 100 ``` then prettier will set printWidth to 100 but pprettier will keep it at the default 80.
prettier reads and honors editorconfig: https://prettier.io/docs/en/api.html#prettierresolveconfigfilepath--options
pprettier doesn't seem to.
So if you have in your
.editorconfig:then prettier will set printWidth to 100 but pprettier will keep it at the default 80.