This page has been shared 1486 times. View these Tweets.
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 the file format and adhere to defined styles. EditorConfig files are easily readable and they work nicely with version control systems.
Below is an example .editorconfig file setting end-of-line and indentation styles for Python and JavaScript files.
Check the Wiki for some real-world examples of projects using EditorConfig files.
When opening a file, EditorConfig plugins look for a file named .editorconfig in the directory of the opened file and in every parent directory. A search for .editorconfig files will stop if the root filepath is reached or an EditorConfig file with root=true is found.
EditorConfig files are read top to bottom and the closest EditorConfig files are read last. Properties from matching EditorConfig sections are applied in the order they were read, so properties in closer files take precedence.
For Windows Users: To create an .editorconfig file within Windows Explorer, you need to create a file named .editorconfig., which Windows Explorer will automatically rename to .editorconfig.
EditorConfig files use an INI format that is compatible with the format used by Python ConfigParser Library, but [ and ] are allowed in the section names. The section names are filepath globs, similar to the format accepted by gitignore. Forward slashes (/) are used as path separators and octothorpes (#) or semicolons (;) are used for comments. Comments should go on their own lines. EditorConfig files should be UTF-8 encoded, with either CRLF or LF line separators.
Filepath glob patterns and currently-supported EditorConfig properties are explained below.
Special characters recognized in section names for wildcard matching:
* | Matches any string of characters, except path separators (/) |
** | Matches any string of characters |
? | Matches any single character |
[name] | Matches any single character in name |
[!name] | Matches any single character not in name |
{s1,s2,s3} | Matches any of the strings given (separated by commas) (Available since EditorConfig Core 0.11.0) |
Special characters can be escaped with a backslash so they won't be interpreted as wildcard patterns.
Note that not all properties are supported by every plugin. The wiki has a complete list of properties.
indent_style: set to open-quotetabclose-quoteor
open-quotespaceclose-quoteto use hard tabs or soft tabs respectively.
indent_size: a whole number defining the number of columns used for each indentation level and the width of soft tabs (when supported). When set to open-quotetabclose-quote, the value of
tab_width (if specified) will be used.tab_width: a whole number defining the number of columns used to represent a tab character. This defaults to the value of indent_size and doesn't usually need to be specified.end_of_line: set to open-quotelfclose-quote,
open-quotecrclose-quote, or
open-quotecrlfclose-quoteto control how line breaks are represented.
charset: set to open-quotelatin1close-quote,
open-quoteutf-8close-quote,
open-quoteutf-8-bomclose-quote,
open-quoteutf-16beclose-quoteor
open-quoteutf-16leclose-quoteto control the character set. Use of
open-quoteutf-8-bomclose-quoteis discouraged.
trim_trailing_whitespace: set to open-quotetrueclose-quoteto remove any whitespace characters preceding newline characters and
open-quotefalseclose-quoteto ensure it doesn't.
insert_final_newline: set to open-quotetrueclose-quoteensure file ends with a newline when saving and
open-quotefalseclose-quoteto ensure it doesn't.
root: special property that should be specified at the top of the file outside of any sections. Set to open-quotetrueclose-quoteto stop
.editorconfig files search on current file.Currently all properties and values are case-insensitive. They are lowercased when parsed. Generally, if a property is not specified, the editor settings will be used, i.e. EditorConfig takes no effect on that part.
It is acceptable and often preferred to leave certain EditorConfig properties unspecified. For example, tab_width need not be specified unless it differs from the value of indent_size. Also, when indent_style is set to tab
, it may be desirable to leave indent_size unspecified so readers may view the file using their preferred indentation format. Additionally, if a property is not standardized in your project (end_of_line for example), it may be best to leave it blank.
This project is greatly in need of feedback from other developers. We want to hear ideas about how to make this project better. Please use the mailing list to send an email to the EditorConfig team and use the issue tracker to submit bugs. Also feel free to tweet at us.
EditorConfig plugins can be developed by using one of the EditorConfig core libraries. The EditorConfig core libraries accept as input the file being edited, find and parse relevant .editorconfig files, and pass back the properties that should be used. Please ignore any unrecognized properties and property values in your editor plugin for future compatibility, since new properties and permitted values will be added in the future. Currently there is a C library, a Python library, and a Java library. (An obsolute Java binding for the Python library is available for archive purpose only.)
If you are planning on creating a new plugin, use the mailing list to let us know so we can help out and link to your plugin once it's created. If you plan on using one of the EditorConfig cores as a library or command line interface, the C library documentation, Python library documentation or Java library documentation may be helpful.
More details can be found on the Plugin-How-To wiki page.
Core libraries:
Editor Plugins:
Logo by Kat On. Website by Trey Hunner and Hong Xu.