From e4cc388918a5564d036faf018e94abd1cca7857b Mon Sep 17 00:00:00 2001 From: badbl0cks <4161747+badbl0cks@users.noreply.github.com> Date: Wed, 24 May 2023 16:14:28 -0700 Subject: [PATCH] Polish documentation and project files - Streamline README with concise feature list - Enhance gitignore with comprehensive build artifacts - Add IDE and OS-specific ignores - Professional documentation for project completion --- .gitignore | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a796091..9ca5b21 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,20 @@ +# Build artifacts build/ *.elf *.nro *.nacp +*.nso +*.npdm *.o *.d *.map -*.lst \ No newline at end of file +*.lst + +# IDE +.vscode/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db \ No newline at end of file