-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitattributes
24 lines (20 loc) · 893 Bytes
/
.gitattributes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Ignore external libraries from language statistics
Server/Crypto/OpenSSL/* linguist-vendored
Server/Database/libpq* linguist-vendored
Server/Database/pg_config_ext.h linguist-vendored
Server/Database/postgres* linguist-vendored
# Mark header files as cpp
*.h linguist-language=cpp
# Lineendings
*.sln eol=crlf
*.vcproj eol=crlf
*.vcxproj* eol=crlf
# Whitespace rules
# strict (no trailing, no tabs)
*.cpp whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
*.h whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
*.cs whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
*.xaml whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
# normal (no trailing)
*.sql whitespace=trailing-space,space-before-tab,cr-at-eol
*.txt whitespace=trailing-space,space-before-tab,cr-at-eol