0

私は自分のプロジェクトのルートにある .editorconfig ファイルで作業するのに慣れていて、これは phpstorm でうまく機能します。しかし、いくつかの理由で、Mac OSX mavericks の Sublime Text 2 で動作させることができません。

崇高な 2.0.2 ビルド 2221

ここで公式のeditorconfigパッケージのインストールを試みましたhttps://sublime.wbond.net/packages/EditorConfigコンソールと手動で、SublimeまたはMacの再起動後も変更はありません:

Sublime は、すべてのインデントにデフォルト設定を使用します。

何を確認すればよいですか?ハマった。

これが私の .editorconfig ファイルです。

# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8

# 4 space indentation
[*.php]
indent_style = space
indent_size = 4

# 2 space indentation
[**.md]
indent_style = space
indent_size = 2

# 2 space indentation
[**.yaml]
indent_style = space
indent_size = 2

# Tab indentation (no size specified)
[**.js]
indent_style = tab

[**.html]
indent_style = tab

[**.less]
indent_style = tab
indent_size = 4
4

2 に答える 2