Skip to content

Commit 51c0955

Browse files
committed
🍭 Added .gitattributes & .gitignore files
0 parents  commit 51c0955

File tree

2 files changed

+122
-0
lines changed

2 files changed

+122
-0
lines changed

.gitattributes

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

.gitignore

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
5+
# C extensions
6+
*.so
7+
8+
# Distribution / packaging
9+
.Python
10+
env/
11+
build/
12+
develop-eggs/
13+
dist/
14+
eggs/
15+
lib/
16+
lib64/
17+
parts/
18+
sdist/
19+
var/
20+
*.egg-info/
21+
.installed.cfg
22+
*.egg
23+
24+
# PyInstaller
25+
# Usually these files are written by a python script from a template
26+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
27+
*.manifest
28+
*.spec
29+
30+
# Installer logs
31+
pip-log.txt
32+
pip-delete-this-directory.txt
33+
34+
# Unit test / coverage reports
35+
htmlcov/
36+
.tox/
37+
.coverage
38+
.cache
39+
nosetests.xml
40+
coverage.xml
41+
42+
# Translations
43+
*.mo
44+
*.pot
45+
46+
# Django stuff:
47+
*.log
48+
49+
# Sphinx documentation
50+
docs/_build/
51+
52+
# PyBuilder
53+
target/
54+
55+
# =========================
56+
# Operating System Files
57+
# =========================
58+
59+
# OSX
60+
# =========================
61+
62+
.DS_Store
63+
.AppleDouble
64+
.LSOverride
65+
66+
# Icon must end with two \r
67+
Icon
68+
69+
# Thumbnails
70+
._*
71+
72+
# Files that might appear on external disk
73+
.Spotlight-V100
74+
.Trashes
75+
76+
# Directories potentially created on remote AFP share
77+
.AppleDB
78+
.AppleDesktop
79+
Network Trash Folder
80+
Temporary Items
81+
.apdisk
82+
83+
# Windows
84+
# =========================
85+
86+
# Windows image file caches
87+
Thumbs.db
88+
ehthumbs.db
89+
90+
# Folder config file
91+
Desktop.ini
92+
93+
# Recycle Bin used on file shares
94+
$RECYCLE.BIN/
95+
96+
# Windows Installer files
97+
*.cab
98+
*.msi
99+
*.msm
100+
*.msp

0 commit comments

Comments
 (0)