Meta: Move .DS_Store rule to the bottom of the .gitignore file

Otherwise, opening any folder under Base in Finder on macOS may create
a tracked .DS_Store file, which we don't want committed to the repo.
This commit is contained in:
Timothy Flynn 2023-11-14 14:43:00 -05:00 committed by Tim Flynn
parent 411f5af0b8
commit bd1e76a98a

4
.gitignore vendored
View file

@ -16,7 +16,6 @@ Toolchain/Build
Toolchain/Local
.vscode
.ccls-cache
.DS_Store
compile_commands.json
.cache
.clang_complete
@ -46,3 +45,6 @@ Tests/LibWeb/WPT/MANIFEST.json
# Ensure that all files in /Base can be tracked, even if they match one of the above rules
!/Base/**
# Keep last to ensure .DS_Store is never tracked, even if otherwise allowed by any exception above.
.DS_Store