2a8211797a
> It is acceptable and often preferred to leave certain EditorConfig properties unspecified. For example [...] if a property is not standardized in your project (end_of_line for example), it may be best to leave it blank. http://editorconfig.org/#file-format-details I added ``end_of_line`` nonetheless, as I think there is an agreement to always use ``lf``.
16 lines
312 B
INI
16 lines
312 B
INI
; This file is for unifying the coding style for different editors and IDEs.
|
|
; More information at http://editorconfig.org
|
|
|
|
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
indent_size = 4
|
|
indent_style = space
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
|
|
[*.md]
|
|
trim_trailing_whitespace = false
|