junstyle
junstyle
this extension spawn a child process to execute php code, it's inefficient and slow. if do more complex work, it will be more slower. and php-cs-fixer can't only format changed...
this is a extension for vscode, just a wrapper for php-cs-fixer. if you want to use in git, i think you should use php-cs-fixer directly, it provide the diff info...
it's a bug, when your file content ends with ``````, i remove the last closed tag ```?>```. fixed https://github.com/junstyle/vscode-php-cs-fixer/commit/fc7803c1a961bf1410763d74ddefbbc17e9264c9 and the ```fix``` command output directly from php-cs-fixer, no matter ```formatHtml```...
when use this extension to fix a file, it create a tmp file and then pass to php-cs-fixer, not the current edited file, maybe the config **in** is useless. ```json...
because use tmp file, so the config **in** can't match the tmp file path generally. why i use tmp file? this extension not only provide to format a whole file,...
yes. Cantor read the path of the php-cs-fixer that you install in the project. you must supply the path
new version published, a new option for setting a tmp dir; #189 #187 if no tmp dir setted, will try `system tmp dir` and `current user home dir`
not support related path, must absolute path
1. about: "header_comment" can you replay the actions, and paste your config `.php-cs-fixer.dist.php` 2. maybe php-cs-fixer optimize the codes, and delete unused codes, you should change your php-cs-fixer config if...
because it's difficult to judge the text whether is php heredoc string or not. so i didn't add the indent str to the code between braces. if you think it's...