-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from ByteCorum/stable
daet
- Loading branch information
Showing
1 changed file
with
58 additions
and
12 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,59 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text = auto | ||
*.cs linguist-language = csharp | ||
*.cpp linguist-language = C++ | ||
*.hpp linguist-language = C++ | ||
*.h linguist-language = C | ||
*.rc linguist-language = Assembly | ||
CMakeLists.txt linguist-language = CMake | ||
|
||
#ignore dirs/files | ||
# Handle line endings automatically for files detected as text | ||
# and leave all files detected as binary untouched. | ||
* text=auto | ||
# The above will handle all files NOT found below | ||
|
||
|
||
|
||
# These files are text and should be normalized (Convert crlf => lf) | ||
.gitattributes text | ||
.gitignore text | ||
*.md text diff=Markdown | ||
*.cs text diff=CSharp | ||
*.cpp text diff=C++ | ||
*.hpp text diff=C++ | ||
*.h text diff=C | ||
*.c text diff=C | ||
*.rc text diff=Assembly | ||
CMakeLists.txt text diff=CMake | ||
|
||
|
||
|
||
# Exclude files from exporting | ||
|
||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
|
||
|
||
|
||
# Enable syntax highlighting for files with extensions. | ||
|
||
*.md linguist-language=Markdown | ||
*.md linguist-detectable=true | ||
|
||
*.cs linguist-language=CSharp | ||
*.cs linguist-detectable=true | ||
|
||
*.cpp linguist-language=C++ | ||
*.cpp linguist-detectable=true | ||
|
||
*.hpp linguist-language=C++ | ||
*.hpp linguist-detectable=true | ||
|
||
*.h linguist-language=C | ||
*.h linguist-detectable=true | ||
|
||
*.c linguist-language=C | ||
*.c linguist-detectable=true | ||
|
||
*.rc linguist-language=Assembly | ||
*.rc linguist-detectable=true | ||
|
||
CMakeLists.txt linguist-language=CMake | ||
CMakeLists.txt linguist-detectable=true | ||
|
||
|
||
#Ignore dirs/files | ||
|
||
DragonBurn/Resources/* linguist-vendored | ||
DragonBurn/OS-ImGui/* linguist-vendored | ||
DragonBurn/Utils/yaml-cpp/* linguist-vendored | ||
DragonBurn/Utils/yaml-cpp/* linguist-vendored |