vscodeにphp-cs-fixerをインストールして
このサイトを参考にしてsetting.jsonの編集をしたのですが、
PHP CS Fixer: executable path not found, please check your settings. It will set to built-in PHP-cs-fixer.phar. Try again!
このようなエラーが出ます
JSON
1{ 2 "atomKeymap.promptV3Features": true, 3 "editor.multiCursorModifier": "ctrlCmd", 4 "editor.formatOnPaste": true, 5 "window.zoomLevel": 0, 6 "editor.suggestSelection": "first", 7 "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", 8 "[html]": { 9 "editor.defaultFormatter": "esbenp.prettier-vscode" 10 }, 11 "php-cs-fixer.executablePath": "${extensionPath}\php-cs-fixer.phar", 12 "php-cs-fixer.lastDownload": 1572058480728, 13 "[php]": { 14 "editor.defaultFormatter": "junstyle.php-cs-fixer" 15 }, 16 "editor.formatOnSaveTimeout": 5000 17}
"php-cs-fixer.executablePath": "${extensionPath}\php-cs-fixer.phar"
この部分は
"php-cs-fixer.executablePath": "C:/Users/user/.vscode"
このように書いて保存するのですが、phpファイルを保存すると勝手に書き換えられます
ワークスぺースのほうのsetting.jsonは
JSON
1{ 2 "editor.formatOnSave": true, 3 "editor.formatOnType": true, 4 "emmet.triggerExpansionOnTab": true, 5 "workbench.editor.enablePreview": false, 6 "editor.tabSize": 2, 7 "editor.minimap.enabled": false, 8 "editor.hover.enabled": false, 9 "php-cs-fixer.executablePath": "C:/Users/user/.vscode", 10 "php-cs-fixer.rules": "@PSR2", 11 "php-cs-fixer.formatHtml": true, 12 "php-cs-fixer.onsave": true, 13 "files.associations": { 14 "*.module": "php" 15 }, 16 "php.suggest.basic": false 17} 18
初心者ですので、お手柔らかにお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/01 08:27