forked from sickmartian/quick_simplenote
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitattributes
42 lines (33 loc) · 978 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Set the text encoding for all files in the project
* text=auto
# Set the line endings for all files in the project
* eol=lf
# *.sh text eol=lf
# *.py eol=lf
# *.yaml eol=lf
# # Set the merge strategy for certain file types
# *.txt merge=union
# *.json merge=union
# # Set the diff tool for certain file types
# *.txt diff=
# *.json diff=
# # Set the merge tool for certain file types
# *.txt merge=
# *.json merge=
# Exclude all image files from the package
*.png export-ignore
*.jpg export-ignore
*.jpeg export-ignore
*.gif export-ignore
*.svg export-ignore
# Exclude test files and directories from the package
tests/* export-ignore
test/* export-ignore
# Exclude Sublime Text project and workspace files from the package
*.sublime-project export-ignore
*.sublime-workspace export-ignore
# Exclude github files from the package
.github/ export-ignore
.gitignore export-ignore
# Exclude project files from the package
pyproject.toml export-ignore