.gitignore 998 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. *.swo
  2. *.swp
  3. *.config
  4. *.creator
  5. *.creator.user
  6. *.creator.user.*
  7. *.files
  8. *.includes
  9. *.cflags
  10. *.cxxflags
  11. *.autosave
  12. build*/
  13. Build*/
  14. Toolchain/Tarballs
  15. Toolchain/Build
  16. Toolchain/Local
  17. .vscode
  18. .vs
  19. .ccls-cache
  20. compile_commands.json
  21. .cache
  22. .clang_complete
  23. .clangd
  24. .idea/
  25. cmake-build-debug/
  26. output/
  27. .vim/
  28. .exrc
  29. .helix/
  30. .swift-version
  31. # Environments
  32. .venv/
  33. .venv*/
  34. venv*/
  35. # Gradle/AndroidStudio
  36. .gradle/
  37. .cxx/
  38. local.properties
  39. # We can't build from cmd.exe anyway
  40. gradlew.bat
  41. Libraries/LibWasm/Tests/Fixtures/SpecTests
  42. Libraries/LibWasm/Tests/Spec
  43. Tests/LibWeb/WPT/wpt
  44. Tests/LibWeb/WPT/metadata
  45. Tests/LibWeb/WPT/MANIFEST.json
  46. # HTTP Test server artifacts from ./Tests/LibWeb/Fixtures/http-test-server.py
  47. http-test-server.pid.txt
  48. http-test-server.log
  49. Meta/CMake/vcpkg/user-variables.cmake
  50. # Ensure that all files in /Base can be tracked, even if they match one of the above rules
  51. !/Base/**
  52. # Keep last to ensure .DS_Store is never tracked, even if otherwise allowed by any exception above.
  53. .DS_Store