Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.
Permalink
release
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# top-most EditorConfig file
root = true
# Visual Studio add on: https://visualstudiogallery.msdn.microsoft.com/c8bccfe2-650c-4b42-bc5c-845e21f96328
# Notepad++ plugin: https://sourceforge.net/projects/editorconfig/files/EditorConfig-Notepad%2B%2B-Plugin/
# For other code editors: http://editorconfig.org/#download
[*.lua]
indent_style = space
indent_size = 4
end_of_line = lf
trim_trailing_whitespace = true
[*.{cpp,h}]
charset = utf-8-bom
indent_style = space
indent_size = 4
end_of_line = lf
trim_trailing_whitespace = true
indent_brace_style = allman # This is unfortunately ignored in Visual Studio
# Makefiles actually require the tabs.
[Makefile]
indent_style = tab