Skip to content

Commit 934eb93

Browse files
committed
Adding gitattributes and gitignore
0 parents  commit 934eb93

File tree

2 files changed

+62
-0
lines changed

2 files changed

+62
-0
lines changed

Diff for: .gitattributes

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
* text=auto
2+
3+
*.py text diff=python
4+
*.html text
5+
.project text
6+
7+
# M$ files
8+
*.bat text eol=crlf
9+
10+
# git files - have them with LF, as I edit them via the shell (echo etc)
11+
*.gitignore text eol=crlf
12+
*.gitattributes text eol=crlf

Diff for: .gitignore

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# svn
2+
.svn/
3+
4+
# binaries
5+
*.pyc
6+
*.pyo
7+
__pycache__/
8+
*.exe
9+
10+
# plugins
11+
*.esl
12+
*.esm
13+
*.esp
14+
15+
# saves_cosaves
16+
*.ess
17+
*.fos
18+
*.obse
19+
*.f4se
20+
21+
# tmp
22+
*.log
23+
*.patch
24+
*.diff
25+
*.tmp
26+
27+
# the user ini
28+
Mopy/bash.ini
29+
30+
# the shortcuts in the Mopy/App folder
31+
Mopy/Apps/*.lnk
32+
33+
# Windows etc
34+
desktop.ini
35+
.dropbox
36+
37+
# Release archives.
38+
scripts/dist/*.7z
39+
40+
# translation files
41+
Mopy/bash/l10n/*.mo
42+
Mopy/bash/l10n/*NEW.txt
43+
44+
# IDE files
45+
.idea/
46+
# if a symlink
47+
.idea
48+
49+
# The LOOT API binaries
50+
Mopy/loot_api.*

0 commit comments

Comments
 (0)