-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from Futarimiti/main
Provide option to ignore certain files
- Loading branch information
Showing
5 changed files
with
132 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
local M = {} | ||
|
||
-- OS-specific ignoring files, obtained from gitignore.io | ||
-- `https://www.toptal.com/developers/gitignore/api/windows,macos,linux` | ||
-- Index: Thu Sep 28 20:45:56 BST 2023 | ||
M.ignored_os_patterns = { | ||
"*~", | ||
".fuse_hidden*", | ||
".directory", | ||
".Trash-*", | ||
".nfs*", | ||
".DS_Store", | ||
".AppleDouble", | ||
".LSOverride", | ||
"Icon", | ||
"._*", | ||
".DocumentRevisions-V100", | ||
".fseventsd", | ||
".Spotlight-V100", | ||
".TemporaryItems", | ||
".Trashes", | ||
".VolumeIcon.icns", | ||
".com.apple.timemachine.donotpresent", | ||
".AppleDB", | ||
".AppleDesktop", | ||
"Network Trash Folder", | ||
"Temporary Items", | ||
".apdisk", | ||
"*.icloud", | ||
"Thumbs.db", | ||
"Thumbs.db:encryptable", | ||
"ehthumbs.db", | ||
"ehthumbs_vista.db", | ||
"*.stackdump", | ||
"[Dd]esktop.ini", | ||
"$RECYCLE.BIN/", | ||
"*.cab", | ||
"*.msi", | ||
"*.msix", | ||
"*.msm", | ||
"*.msp", | ||
"*.lnk", | ||
} | ||
|
||
return M |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters