Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/editorconfig/editorconfig-sublime
Sublime Text plugin for EditorConfig - helps developers define and maintain consistent coding styles between different editors and IDEs
https://github.com/editorconfig/editorconfig-sublime
Last synced: 13 days ago
JSON representation
Sublime Text plugin for EditorConfig - helps developers define and maintain consistent coding styles between different editors and IDEs
- Host: GitHub
- URL: https://github.com/editorconfig/editorconfig-sublime
- Owner: editorconfig
- Fork: true (sindresorhus/editorconfig-sublime)
- Created: 2013-05-09T15:12:44.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-06-12T05:19:06.000Z (over 2 years ago)
- Last Synced: 2024-08-01T19:53:35.112Z (3 months ago)
- Language: Python
- Homepage: http://sindresorhus.com
- Size: 93.8 KB
- Stars: 219
- Watchers: 14
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# EditorConfig - Sublime Text plugin
> [EditorConfig](http://editorconfig.org) 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 readibly and they work nicely with version control systems.
## Install
### Sublime Text 2
Install with [Package Control](http://wbond.net/sublime_packages/package_control)
### Sublime Text 3
[Download](https://github.com/sindresorhus/editorconfig-sublime/archive/st3.zip), unzip, and put the contents in `~/Library/Application Support/Sublime Text 3/Packages/EditorConfig`.
Will be easier when Package Control is fully compatible.## Getting started
See the [EditorConfig site][] for documentation.
## Supported properties
- root
- indent_style
- indent_size
- end\_of\_line
- charset
- trim_trailing_whitespace
- insert_final_newlineExplanation of the properties can be found on the [EditorConfig site][].
## Example file
*My recommended default settings*
```ini
# editorconfig.org
root = true[*]
indent_style = tab
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
```## Tips
### Trailing whitespace
Even though there is a `trim_trailing_whitespace` property. I would still recommend you set `"draw_white_space": "all"` in your Sublime preferences to prevent you from accidentally committing whitespace garbage whenever a project is missing a .editorconfig file.
### Show changes
This plugin does its changes transparently in the background. I would recommend the excellent [Modific](https://github.com/gornostal/Modific) plugin if you would like to see what changed.
## License
[MIT License](http://en.wikipedia.org/wiki/MIT_License)
(c) [Sindre Sorhus](http://sindresorhus.com)[EditorConfig site]: http://editorconfig.org