This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########## 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/ |