-
Notifications
You must be signed in to change notification settings - Fork 66
/
.gitattributes
126 lines (103 loc) · 2.72 KB
/
.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#####################################################
# PureBasic OpenSource Projects: #
# https://github.com/fantaisie-software/purebasic #
#####################################################
# Set Git's default behaviour to text-files autodetection, in case users
# don't have `core.autocrlf` set:
* text=auto
# Explicitly declare commonly used file extensions as either text or binary,
# and tell Git how to handle line-endings normalization.
## PureBasic Files
##################
[attr]PureBasic text linguist-language=PureBasic
*.cfg text linguist-generated=true
*.pb PureBasic
*.pbf PureBasic
*.pbi PureBasic
*.pbp linguist-language=XML linguist-generated=true
## C Sources and Make Files
###########################
*.c text
*.h text
[Mm]akefile text eol=lf
## Fasm Sources
###############
# All Fasm code is assumed to be generated by the PBCompiler:
*.asm text linguist-language=Fasm linguist-generated=true
# Hand-coded exceptions should be listed below...
## Shell Scripts
################
*.bat text eol=crlf
*.sh text eol=lf
*.bash text eol=lf
*.ps1 text eol=crlf
## Repository Configuration
###########################
.editorconfig text eol=lf
.travis.yml text eol=lf
.gitattributes text eol=lf
.gitconfig text eol=lf
.gitignore text eol=lf
.gitmodules text eol=lf
## Documentation Files
######################
*.md text
*.txt text
LICENSE* text
## Image & Graphics Files
#########################
*.ai binary
*.bmp binary
*.eps binary
*.gif binary
*.icns binary
*.ico binary
*.jng binary
*.jp2 binary
*.jpeg binary
*.jpg binary
*.jpx binary
*.jxr binary
*.pdf binary
*.pdn binary
*.png binary
*.psb binary
*.psd binary
*.svg binary
*.svgz binary
*.tif binary
*.tiff binary
*.wbmp binary
*.webp binary
## Zip/Archives
###############
*.7z binary
*.gz binary
*.jar binary
*.rar binary
*.tar binary
*.zip binary
## Binary files
###############
*.app binary
*.dll binary
*.dylib binary
*.exe binary
*.out binary
*.so binary
# ================================
# Exclusion Rules for Zip Download
# ================================
# Exclude from the downloadable Zip archive of the repository contents relating
# to Git or repository maintenance, to provide end users with a cut-down version
# of the project containing the essentials for quick consumption.
/.git export-ignore
.editorconfig export-ignore
.travis.yml export-ignore
.gitattributes export-ignore
.gitconfig export-ignore
.gitignore export-ignore
.gitmodules export-ignore
/AsciiDoc export-ignore
/validate.sh export-ignore
# EOF #