更新: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