.gitignore 838 B

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