mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-04 05:19:58 +03:00
d58263497b
The wild card rules at the top of the .gitignore came from a time when the build wrote back to the git repository and placed files right next to the source. (Original commit that introduced them37c27e2e
, they were later consolidated into the root .gitignore in802d4dc
) We have since moved to cmake, and these rules have become obsolete, and they just cause issues where we need to go and add negations for these rules in order for things to work. A previous change attempted to remove the top wild card rules (PR #4565) but it was later reverted, as they forgot to remove the top ignore everything rule '*', so all files were ignored. This change just removes all of these rules that no longer make sense, restoring a bit of sanity. *.o,*.d,*.a rules were also from when the build wrote to the repository, they are now defunct. The same goes for the *Endpoint.h and CMakeFiles rules. The lowercase build directory can be removed as we've standardized on the uppercase 'Build' directory as the root of the build output dir.
28 lines
316 B
Plaintext
28 lines
316 B
Plaintext
*.swo
|
|
*.swp
|
|
*.config
|
|
*.creator
|
|
*.creator.user
|
|
*.creator.user.*
|
|
*.files
|
|
*.includes
|
|
*.cflags
|
|
*.cxxflags
|
|
*.autosave
|
|
Meta/Lagom/build
|
|
Build
|
|
Toolchain/Tarballs
|
|
Toolchain/Build
|
|
Toolchain/Local
|
|
.vscode
|
|
.ccls-cache
|
|
.DS_Store
|
|
compile_commands.json
|
|
.cache
|
|
.clang_complete
|
|
.clangd
|
|
.idea/
|
|
cmake-build-debug/
|
|
sync-local.sh
|
|
.vim/
|