5
2

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 1 year has passed since last update.

vscodeにeditorconfigを設定する備忘録

Last updated at Posted at 2022-02-05

editorconfig

エディターの細かいルールを統一するためのツールです。インデントや文字コード、改行コードなどを一括で設定し、チーム内の異なるエディタ間で共有することができます。

今回はこちらをこのプロジェクトに設定していきます。

設定ファイルの作成

下記のような設定ファイルをプロジェクトのルートに設定します。

root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = false
max_line_length = 120
indent_size = 2

Screen Shot 2022-02-05 at 13.19.18.png

細かい設定はこちらの公式ページをご覧ください。

VScodeのプラグインの設定

こちらのプラグインをvscodeに設定します。

下記のようにプラグインの検索画面でEditorConfig.EditorConfigと検索し、出てきたこちらのプラグインを有効化します。

Screen Shot 2022-02-05 at 13.20.38.png

これで、ファイルの保存時などに、設定したエディタの設定が適用されるようになります。

今回の設定はこちらのコミットで確認することができます。

ぜひ試してみてください!

5
2
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
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?