diff options
| author | Jack Walker <7463599+Jack-Walker@users.noreply.github.com> | 2020-03-17 00:31:30 -0400 |
|---|---|---|
| committer | Jack Walker <7463599+Jack-Walker@users.noreply.github.com> | 2020-03-17 00:31:30 -0400 |
| commit | 087f561f7786a812c815b9198f24e6acd0477497 (patch) | |
| tree | 8e8b1efeb798ff0b341d39de024d7b8554013c4a /.gitignore | |
| parent | be78236d36a5eb4ef80acef6188751f6b5d176ae (diff) | |
First proper commit.
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..76bc0fd81 --- /dev/null +++ b/.gitignore @@ -0,0 +1,44 @@ +# Cache files +__pycache__/ +.pyc + +# Text editor remnants +.vscode/ +.vs/ +.idea/ +CMakeLists.txt +cmake-build-debug +venv/ + +# Project-specific ignores +build/ +notes/ +baserom/ +*.elf +*.sra +*.z64 +*.map +*.dump +out.txt + +# Tool artifacts +tools/ido7.1_compiler/* +tools/overlayhelpers/batchdisasm/output/* +tools/overlayhelpers/batchdisasm/output2/* +tools/overlayhelpers/batchdisasm/mipsdisasm/* +tools/disasm/output/* +tools/asmsplitter/asm/* +tools/asmsplitter/c/* + +# Assets +*.rgba32.png +*.rgb5a1.png +*.i4.png +*.i8.png +*.ia4.png +*.ia8.png +*.ci4.png +*.ci8.png + +#Per-user configuration +.python-version |
