generated from fantaisie-software/purebasic-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
98 lines (80 loc) · 1.99 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
##########################################
# Lemon Parser Generator for PureBasic: #
# https://github.com/tajmone/Lemon-PB #
##########################################
# 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 gitlab-language=PureBasic
*.cfg text linguist-generated=true gitlab-generated=true
*.pb PureBasic
*.pbf PureBasic
*.pbi PureBasic
*.pbp linguist-language=XML linguist-generated=true
*.pbp gitlab-language=XML gitlab-generated=true
## Shell Scripts
################
*.bat text eol=crlf
*.com text eol=crlf
*.sh text eol=lf
*.ps1 text eol=crlf
## Repository Configuration
###########################
.editorconfig text eol=lf
.gitlab-ci.yml 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
######################
*.adoc text
*.asciidoc text
*.md text
*.txt text
*.doc binary
*.docx binary
*.odt binary
*.pdf binary
COPYING text
LICENSE text
UNLICENSE text
## Make Files
#############
*Makefile* text eol=lf
*makefile* text eol=lf
*.mak text eol=lf
*.mk text eol=lf
depend text eol=lf
## Zipped Archives
##################
*.7z binary
*.gz binary
*.jar binary
*.rar binary
*.tar binary
*.zip binary
## Image & Graphics Files
#########################
*.bmp binary
*.gif binary
*.ico binary
*.jpeg binary
*.jpg binary
*.png binary
*.svg binary
*.svgz binary
## Compiled Binaries
####################
*.app binary
*.dll binary
*.dylib binary
*.exe binary
*.out binary
*.so binary
# EOF #