mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00
Make .gitignore consistent with pokegold and pokecrystal
Closes #209 (pokeyellow will need all pokered's recent changes synced)
This commit is contained in:
parent
155695cbfe
commit
f60ee848e8
48
.gitignore
vendored
48
.gitignore
vendored
|
@ -1,8 +1,10 @@
|
||||||
|
# generated
|
||||||
|
*.tx
|
||||||
|
*.o
|
||||||
|
|
||||||
# precompiled python
|
# precompiled python
|
||||||
*.pyc
|
*.pyc
|
||||||
|
*$py.class
|
||||||
# compiled object file
|
|
||||||
*.o
|
|
||||||
|
|
||||||
# no binaries
|
# no binaries
|
||||||
*.exe
|
*.exe
|
||||||
|
@ -11,26 +13,30 @@
|
||||||
*.gbc
|
*.gbc
|
||||||
*.gb
|
*.gb
|
||||||
|
|
||||||
|
# save game files
|
||||||
|
*.sgm
|
||||||
|
*.sav
|
||||||
|
*.rtc
|
||||||
|
*.sn*
|
||||||
|
*.sa*
|
||||||
|
*.sg1
|
||||||
|
|
||||||
# rgbds extras
|
# rgbds extras
|
||||||
*.map
|
*.map
|
||||||
*.sym
|
*.sym
|
||||||
|
|
||||||
# converted image data
|
# vim configuration
|
||||||
*.2bpp
|
# http://www.vim.org/scripts/script.php?script_id=441
|
||||||
*.1bpp
|
|
||||||
*.pic
|
|
||||||
|
|
||||||
# swap files for vim
|
|
||||||
.*.swp
|
|
||||||
|
|
||||||
# no data from extras/
|
|
||||||
*.json
|
|
||||||
|
|
||||||
# for any of the poor souls with save game files in their working directory
|
|
||||||
*.sgm
|
|
||||||
*.sav
|
|
||||||
*.sys
|
|
||||||
|
|
||||||
# for vim configuration
|
|
||||||
# url: http://www.vim.org/scripts/script.php?script_id=441
|
|
||||||
.lvimrc
|
.lvimrc
|
||||||
|
|
||||||
|
# swap files for vim and gedit
|
||||||
|
.*.swp
|
||||||
|
*~
|
||||||
|
|
||||||
|
# macos files
|
||||||
|
.DS_STORE
|
||||||
|
|
||||||
|
# compiled graphics
|
||||||
|
*.1bpp
|
||||||
|
*.2bpp
|
||||||
|
*.pic
|
||||||
|
|
Loading…
Reference in a new issue