牌語備忘録 -pygo

あくまでもメモです。なるべくオフィシャルの情報を参照してください。

牌語備忘録 -pygo

EditorConfig を使ってみるメモ

更新:2015-12-02

インストール

homobrew

brew install editorconfig

npm

npm でもインストールできるっぽい

$ npm install -g editorconfig

Emacs plugin

M-x package-list-pakages で editorconfig をインストール - https://github.com/editorconfig/editorconfig-emacs#readme

設定

.init.el

(when (locate-library "editorconfig")
  (editorconfig-mode 1)
)

.editorconfig

root = true

[*.html]
indent_style = space
indent_size = 4

[*.{css,scss}]
indent_style = space
indent_size = 2

[*.{js,jsx,json}]
indent_style = space
indent_size = 2

[*.py]
indent_style = space
indent_size = 4

[*.erb]
indent_style = space
indent_size = 2

適当に hoge.js とか hoge.py とか作って設定通り動くか確認