Skip to content

Commit 8390c75

Browse files
authored
Merge branch 'main' into fix/task-typo
2 parents b76b30f + 578d040 commit 8390c75

12 files changed

+5771
-5666
lines changed

.gitattributes

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
# Line ending normalization
2+
* text=auto
3+
4+
# Documents
5+
*.doc diff=astextplain
6+
*.DOC diff=astextplain
7+
*.docx diff=astextplain
8+
*.DOCX diff=astextplain
9+
*.dot diff=astextplain
10+
*.DOT diff=astextplain
11+
*.pdf diff=astextplain
12+
*.PDF diff=astextplain
13+
*.rtf diff=astextplain
14+
*.RTF diff=astextplain
15+
*.md text
16+
*.adoc text
17+
*.textile text
18+
*.mustache text
19+
*.csv text
20+
*.tab text
21+
*.tsv text
22+
*.sql text
23+
*.html text
24+
*.css text
25+
26+
# Graphics
27+
*.png binary
28+
*.jpg binary
29+
*.jpeg binary
30+
*.gif binary
31+
*.tif binary
32+
*.tiff binary
33+
*.ico binary
34+
*.svg binary
35+
*.eps binary
36+
37+
#sources
38+
*.c text
39+
*.cc text
40+
*.cxx text
41+
*.cpp text
42+
*.c++ text
43+
*.hpp text
44+
*.h text
45+
*.h++ text
46+
*.hh text
47+
*.s text
48+
*.S text
49+
*.asm text
50+
51+
# Compiled Object files
52+
*.slo binary
53+
*.lo binary
54+
*.o binary
55+
*.obj binary
56+
57+
# Precompiled Headers
58+
*.gch binary
59+
*.pch binary
60+
61+
# Compiled Dynamic libraries
62+
*.so binary
63+
*.dylib binary
64+
*.dll binary
65+
66+
# Compiled Static libraries
67+
*.lai binary
68+
*.la binary
69+
*.a binary
70+
*.lib binary
71+
72+
# Executables
73+
*.exe binary
74+
*.out binary
75+
*.app binary
76+
77+
78+
# Basic .gitattributes for a python repo.
79+
80+
# Source files
81+
# ============
82+
*.pxd text
83+
*.py text
84+
*.py3 text
85+
*.pyw text
86+
*.pyx text
87+
88+
# Binary files
89+
# ============
90+
*.db binary
91+
*.p binary
92+
*.pkl binary
93+
*.pyc binary
94+
*.pyd binary
95+
*.pyo binary
96+
97+
# Note: .db, .p, and .pkl files are associated
98+
# with the python modules ``pickle``, ``dbm.*``,
99+
# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb``
100+
# (among others).
101+
102+
*.sh text
103+
make text
104+
makefile text
105+
*.mk text

0 commit comments

Comments
 (0)