зеркало из
1
0
Форкнуть 0
This will enforce a couple of code conventions
(indentation: 2 spaces, \n for EOL, utf-8 charset)
similar to .vscode/settings.json, but with the
EditorConfig format (https://editorconfig.org/)
which is supported by most major IDEs.
This commit is contained in:
Eirik 2018-10-03 20:32:57 +02:00
Родитель 0938258712
Коммит 6c429ee7d8
1 изменённых файлов: 11 добавлений и 0 удалений

11
.editorconfig Normal file
Просмотреть файл

@ -0,0 +1,11 @@
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
charset = utf-8
end_of_line = lf