mirror of https://github.com/zeldaret/botw.git
Improved .gitignore
This commit is contained in:
parent
206d7781e5
commit
b68b1df6f1
|
@ -1,18 +1,26 @@
|
||||||
|
# Python
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.pyc
|
*.pyc
|
||||||
*.egg-info/
|
*.egg-info/
|
||||||
*.dist-info/
|
*.dist-info/
|
||||||
*.so
|
|
||||||
*.dll
|
|
||||||
dist/
|
|
||||||
build/
|
|
||||||
bin/
|
|
||||||
.mypy_cache/
|
.mypy_cache/
|
||||||
.benchmarks/
|
.benchmarks/
|
||||||
|
|
||||||
|
# Binaries
|
||||||
|
*.so
|
||||||
|
*.dll
|
||||||
|
*.elf
|
||||||
|
*.nso
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
bin/
|
||||||
|
|
||||||
|
# IDEs
|
||||||
.idea/
|
.idea/
|
||||||
.vscode/
|
.vscode/
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# IDA
|
||||||
*.id0
|
*.id0
|
||||||
*.id1
|
*.id1
|
||||||
*.id2
|
*.id2
|
||||||
|
@ -21,12 +29,14 @@ bin/
|
||||||
*.nam
|
*.nam
|
||||||
*.til
|
*.til
|
||||||
|
|
||||||
data/*.elf
|
# Ghidra
|
||||||
data/*.nso
|
*.gpr
|
||||||
|
*.rep/
|
||||||
|
|
||||||
|
# Debugging
|
||||||
perf.mData
|
perf.mData
|
||||||
perf.mData.old
|
perf.mData.old
|
||||||
.gdb_history
|
.gdb_history
|
||||||
|
|
||||||
.DS_Store
|
# Tooling
|
||||||
toolchain/clang/
|
/toolchain/clang/
|
||||||
|
|
Loading…
Reference in New Issue