.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. # Junk files
  2. *.bak
  3. *.swp
  4. *~
  5. .DS_Store
  6. ._*
  7. # Merge files
  8. *.orig
  9. *.rej
  10. # Build artifacts
  11. .clang_complete
  12. .build/
  13. *.elf
  14. *.log
  15. *.lss
  16. *.lst
  17. *.map
  18. *.o
  19. *.a
  20. *.so
  21. *.dylib
  22. *.dll
  23. *.la
  24. *.stackdump
  25. *.sym
  26. index.html
  27. firmware_list.json
  28. # QMK-specific
  29. api_data/v1
  30. quantum/version.h
  31. *.bin
  32. *.eep
  33. *.hex
  34. *.qmk
  35. *.uf2
  36. # DD config at wrong location
  37. /keyboards/**/keymaps/*/info.json
  38. /keyboards/**/keymaps/*/keyboard.json
  39. # Old-style QMK Makefiles
  40. /keyboards/**/Makefile
  41. # kbfirmware....
  42. /keyboards/**/kb.h
  43. /keyboards/**/kb.c
  44. # Eclipse/PyCharm/Other IDE Settings
  45. *.iml
  46. .browse.VC.db*
  47. .cproject
  48. .idea
  49. .idea/
  50. .project
  51. .settings/
  52. # ?
  53. .dep
  54. .history/
  55. build/
  56. cmake-build-debug
  57. CMakeLists.txt
  58. *.pdf
  59. # Let these ones be user specific, since we have so many different configurations
  60. *.code-workspace
  61. .stfolder
  62. .tags
  63. .vscode/c_cpp_properties.json
  64. .vscode/ipch/
  65. .vscode/last.sql
  66. .vscode/launch.json
  67. .vscode/tasks.json
  68. .vscode/temp.sql
  69. tags
  70. # Ignore image/font files
  71. *.bmp
  72. *.wbmp
  73. *.gif
  74. *.jpg
  75. *.jpeg
  76. *.png
  77. *.apng
  78. *.mng
  79. *.svg
  80. *.webp
  81. *.webm
  82. *.avi
  83. *.mp4
  84. *.mpeg
  85. *.ttf
  86. *.otf
  87. # Things Travis sees
  88. /.vs
  89. id_rsa_*
  90. secrets.tar
  91. # Python things
  92. __pycache__
  93. .python-version
  94. .venv
  95. # Prerequisites for updating ChibiOS
  96. /util/fmpp*
  97. # Allow to exist but don't include it in the repo
  98. user_song_list.h
  99. # clangd
  100. compile_commands.json
  101. .clangd/
  102. .cache/
  103. # VIA(L) files that don't belong in QMK repo
  104. via*.json
  105. /keyboards/**/keymaps/via/*
  106. /keyboards/**/keymaps/vial/*