mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
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:
parent
411f5af0b8
commit
bd1e76a98a
Notes:
sideshowbarker
2024-07-17 20:19:08 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/bd1e76a98a Pull-request: https://github.com/SerenityOS/serenity/pull/21939
1 changed files with 3 additions and 1 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue