EditorConfig is a file format and collection of text editor plugins for maintaining consistent coding styles between different editors and IDEs.
seen from United States

seen from Russia
seen from China
seen from Malaysia
seen from Finland

seen from Australia
seen from United Kingdom

seen from Türkiye
seen from Singapore
seen from Türkiye

seen from United States
seen from Italy
seen from Malaysia

seen from Malaysia
seen from Malaysia
seen from Türkiye
seen from United States
seen from China
seen from China
seen from United States
EditorConfig is a file format and collection of text editor plugins for maintaining consistent coding styles between different editors and IDEs.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
SublimeText and EditorConfig and eclint
SublimeText and EditorConfig and eclint
Following some of all the cool developers on twitter, GitHub, blogs etc. I fell over EditorConfig. The homepage of the project boldly stated:
EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs. The EditorConfig project consists of a file format for defining coding styles and a collection of text editor plugins that enable editors to read…
View On WordPress
Organize sua equipe de desenvolvimento: Editores e IDEs
Olá! É com este post que início a uma série de artigos que ajudarão gestores a tornarem suas equipes mais produtivas.
Yet Another な EditorConfig プラグイン (完全な yak shaving)
最近(といってもちょっと前)のこと、同時に2つのプロジェクトのコードを触ることになったけど、それぞれのコードのインデントの規約が違っていてちょっと困ったことになってました。
Visual Studio 2013 以降であれば、ソリューション別にインデント設定できるとの話も聞きましたが、あいにく、それらのプロジェクトでは、Visual Studio 2012を使っていたため、そういうことはできません。
そこで、EditorConfig拡張を使って、プロジェクト毎にインデント設定を切り替えて作業をしました。
今まで、Vimで作業をする場合には、thinca/vim-localrcを使ってインデント等は設定していましたが、EditorConfigも使うとなると、設定ファイルを2つ(.local.vimrc と .editorconfig)も作らないといけなくなり、面倒なので、Vimの方もEditorConfigを導入しようとしました。
が、Vim用のEditorConfigプラグインが、とってもいただけないシロモノで、そんなに大した規模ではないのにPythonインタフェースもしくはPythonのコマンドのどちらかが必須で、しかもpython3は未対応といった有様。
こういう、起動時からロードしてくるタイプのプラグインはできるだけロード時間のかからないようにしたいところに、これはいただけない。
そんなこんなで、Vimscriptのみで書き直しました。
https://github.com/sgur/vim-editorconfig
使い方は、オフィシャルのものとほぼ同じで、.editorconfigが存在しているディレクトリ以下のファイルを開くと、設定が反映されるだけです。
一応、root = trueが指定された.editorconfig のあるディレクトリにlcdするオプションはつけました(.local.vimrcに lcd <sfile>:hっていつも書いてたので)。
サポートしているプロパティも、ベーシックなもののみです。Domain-Specific propertiesは、特にアイデアが湧かなかったので、何もしてません。
もし、複数のプロジェクト・エディタ間でインデント設定等を共用したい、といった場合があれば、お試しください。