.gitignore 983 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. # Environments
  31. .venv/
  32. .venv*/
  33. venv*/
  34. # Gradle/AndroidStudio
  35. .gradle/
  36. .cxx/
  37. local.properties
  38. # We can't build from cmd.exe anyway
  39. gradlew.bat
  40. Libraries/LibWasm/Tests/Fixtures/SpecTests
  41. Libraries/LibWasm/Tests/Spec
  42. Tests/LibWeb/WPT/wpt
  43. Tests/LibWeb/WPT/metadata
  44. Tests/LibWeb/WPT/MANIFEST.json
  45. # HTTP Test server artifacts from ./Tests/LibWeb/Fixtures/http-test-server.py
  46. http-test-server.pid.txt
  47. http-test-server.log
  48. Meta/CMake/vcpkg/user-variables.cmake
  49. # Ensure that all files in /Base can be tracked, even if they match one of the above rules
  50. !/Base/**
  51. # Keep last to ensure .DS_Store is never tracked, even if otherwise allowed by any exception above.
  52. .DS_Store