1
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 5 years have passed since last update.

Atomのパッケージ

Last updated at Posted at 2016-03-18

#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の設定で行えば、一つだけは何とか対応できる。
(他に方法あれば教えてほしいです)

####参考
http://editorconfig.org/

##○○関連
###minimap

##lint関連

##あったら欲しい

1
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
1
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?