.gitignore 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # Object files
  2. *.o
  3. # Target files
  4. *.elf
  5. # Built binaries
  6. *bin
  7. # Build directory
  8. roomba/build
  9. # AFL findings
  10. fuzzing/**/findings/
  11. # Backup files
  12. *~
  13. *.orig
  14. .*.swn
  15. .*.swo
  16. .*.swp
  17. \#*\#
  18. cachegrind.out*
  19. # Eclipse workspace files
  20. .project
  21. .cproject
  22. .settings
  23. .idea
  24. # KDevelop4 project files
  25. .kdev4
  26. *.kdev4
  27. # Codelite (among others) project files
  28. *.project
  29. # Visual Studio Code user settings
  30. .vscode/
  31. # ctags index files
  32. tags
  33. # GDB initialization scripts
  34. .gdbinit
  35. # Eclipse symbol file (output from make eclipsesym)
  36. eclipsesym.xml
  37. /toolchain
  38. # Ignore created Arduino sketch files
  39. _sketches.cpp
  40. # local override files
  41. Makefile.local
  42. # Vagrant
  43. .vagrant
  44. # clang-complete command line argument lists (Vim: clang-complete, Atom: linter-clang, autocomplete-clang addons)
  45. .clang_complete
  46. # YouCompleteMe (https://github.com/Valloric/YouCompleteMe)
  47. .ycm_extra_conf.py
  48. # Python compiled files
  49. *.pyc
  50. # Ignore download cache
  51. .dlcache
  52. # scan-build artifacts
  53. scan-build/
  54. # compile_and_test_for_boards default "results" directory
  55. results/
  56. # mypy artifacts
  57. .mypy_cache/
  58. # Clangd compile flags (language server)
  59. compile_commands.json
  60. compile_flags.txt
  61. # suit manifest keys
  62. keys/
  63. # clangd language server
  64. .clangd/