From b68b1df6f13c8560ac4808d1585c27435eb07e4d Mon Sep 17 00:00:00 2001 From: AlexApps99 Date: Sun, 25 Jul 2021 21:34:20 +1200 Subject: [PATCH] Improved .gitignore --- .gitignore | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index e070b708..1bff14bf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,18 +1,26 @@ +# Python __pycache__/ *.pyc *.egg-info/ *.dist-info/ -*.so -*.dll -dist/ -build/ -bin/ .mypy_cache/ .benchmarks/ +# Binaries +*.so +*.dll +*.elf +*.nso +dist/ +build/ +bin/ + +# IDEs .idea/ .vscode/ +.DS_Store +# IDA *.id0 *.id1 *.id2 @@ -21,12 +29,14 @@ bin/ *.nam *.til -data/*.elf -data/*.nso +# Ghidra +*.gpr +*.rep/ +# Debugging perf.mData perf.mData.old .gdb_history -.DS_Store -toolchain/clang/ +# Tooling +/toolchain/clang/