-
-
Save john-eevee/1e0d7dddd65f11d08730b81fb34205e2 to your computer and use it in GitHub Desktop.
.editorconfig for Elixir projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # EditorConfig is awesome: http://EditorConfig.org | |
| # .editorconfig for Elixir projects | |
| # https://git.io/elixir-editorconfig | |
| # top-most EditorConfig file | |
| root = true | |
| [*] | |
| indent_style = space | |
| indent_size = 2 | |
| end_of_line = lf | |
| charset = utf-8 | |
| trim_trailing_whitespace = true | |
| insert_final_newline = true | |
| [*.{md, markdown, eex}] | |
| trim_trailing_whitespace = false | |
| [Makefile] | |
| indent_style = tab | |
| #[*.bat] | |
| #end_of_line = crlf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment