.gitignore 358 B

12345678910111213141516171819202122232425262728293031323334353637
  1. *.swp
  2. *.gdb_history
  3. # LSP
  4. .cache
  5. compile_commands.json
  6. # JetBrains IDEs
  7. .idea/
  8. # Python VirtEnvironments
  9. .env
  10. .venv
  11. env/
  12. venv/
  13. # Python Byte-compiled / optimized files
  14. __pycache__/
  15. *.py[cod]
  16. *$py.class
  17. .obj/
  18. bindings/
  19. .DS_Store
  20. .mxproject
  21. Brewfile.lock.json
  22. # Visual Studio Code
  23. .vscode/
  24. # legendary cmake's
  25. build
  26. CMakeLists.txt
  27. # bundle output
  28. dist