Atomパッケージ
編集中
プロジェクト関連
project-manager
プロジェクト管理
EditorConfig
コーディングスタイルの設定
editorconfig
# ここがプロジェクトのルートですよ
root = true
# 対象の指定
[*]
# 改行コード
end_of_line = crlf
charset = utf-8
indent_style = tab
indent_size = 4
# 行末の空白削除します?
trim_trailing_whitespace = false
# 最終行に改行いれます?
insert_final_newline = false
[*.md]
indent_style = space
indent_size = 4
insert_final_newline = true
[*.{js,css}]
trim_trailing_whitespace = true
insert_final_newline = true
補足
- 「charset」 が "latin1", "utf-8", "utf-8-bom", "utf-16be" or "utf-16le"のどれかしか指定できない。
- 「charset」 が新規ファイルには反映されない。
指定できないcharsetは、atomの設定で行えば、一つだけは何とか対応できる。
(他に方法あれば教えてほしいです)
参考