Skip to content

Instantly share code, notes, and snippets.

@mihai-rc
mihai-rc / .gitignore
Last active July 24, 2024 19:34
Unity .gitignore
########## Unity ##########
## This .gitignore assumes that the Unity project is in its own sub-folder inside the repo's root
## Replace <UnityPrj-Subfolder> with the actual name of the Unity project
# Unity Project
/<UnityPrj-Subfolder>/[Ll]ibrary/
/<UnityPrj-Subfolder>/[Tt]emp/
/<UnityPrj-Subfolder>/[Oo]bj/
/<UnityPrj-Subfolder>/[Bb]uild/
@mihai-rc
mihai-rc / .editorconfig
Last active September 13, 2024 13:21
.editorconfig
# IDE configurations containing my preferred coding convensions for C#
[*]
charset = utf-8
end_of_line = crlf
trim_trailing_whitespace = false
insert_final_newline = false
indent_style = space
indent_size = 4