2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

vscode remote containerのphpのコードをphp cs fixerで整形する

Posted at

概要

remote containerを利用してphpのコードを書いて、保存した時に自動で整形されるようにする。

書かないこと

  • remote containerの使い方
  • php cs fixerのルール設定

php-cs-fixerのインストール

Composer経由でインストールする。
docker環境なので、Dockerfileに以下を追加する。
追加したらコンテナを再構築する。

RUN composer global require "friendsofphp/php-cs-fixer"

vscode拡張のインストール

vscodeのExtensionsでjunstyle.php-cs-fixerを検索して、インストールする。

settings.jsonの追加

ホームディレクトリに.vscode/settings.jsonがない場合は作成して、以下を追加する。

{
  "php-cs-fixer.onsave": true,
  "php-cs-fixer.executablePath": "php-cs-fixer",
  "[php]": {
    "editor.defaultFormatter": "junstyle.php-cs-fixer"
  }
}
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?