# # EditorConfig: http://EditorConfig.org # # This files specifies some basic editor conventions for the files in this # project. Many editors support this standard, you simply need to find a plugin # for your favorite! # # Stop searching for other .editorconfig files above this folder. root = true # Pick some sane defaults for all files. [*] # UNIX line-endings are preferred since: # * git prefers them # * servers run on Linux # * most developers use Mac OS X end_of_line = lf # No reason in these modern times to use anything other than UTF-8. charset = utf-8 # Ensure that there's no bogus whitespace in the file. trim_trailing_whitespace = true # A little esoteric, but it's kind of a standard now. # http://stackoverflow.com/questions/729692/why-should-files-end-with-a-newline insert_final_newline = true # Herein be the apex of holy wars. Decidedly more idyllic than pragmatic. # http://programmers.stackexchange.com/questions/57 indent_style = tab # Personal preference here. Smaller indent size means you can fit more on a line # which can be nice when there are lines with several indentations. indent_size = 2