Add editor configuration with whitespace preferences:

This commit is contained in:
Jozef Izso 2016-04-08 15:59:49 +02:00
Родитель c9be685d1a
Коммит 98ae57d504
1 изменённых файлов: 30 добавлений и 0 удалений

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

@ -0,0 +1,30 @@
root = true
[*]
indent_style = space
indent_size = 4
# C++ files
[*.{cpp,h}]
indent_style = space
indent_size = 4
# C# files
[*.{cs}]
indent_style = space
indent_size = 4
# MSBuild projects
[*.{proj,targets,props,filters}]
indent_style = space
indent_size = 2
# Batch scripts
[*.{bat,cmd}]
indent_style = space
indent_size = 4
# NuGet files
[nuget.config]
indent_style = space
indent_size = 2