Created
June 7, 2022 05:34
-
-
Save haiyon/453b7e0b3b0e9038833a062eb2376915 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| // .stglobalignore | |
| // Syncthing Ignore Patterns - https://docs.syncthing.net/users/ignoring.html#patterns: | |
| // Useful .stignore Patterns - https://goo.gl/DVHI1h | |
| // Usage: Add the line below to all .stignore files for each Syncthing node | |
| // #include .stglobalignore | |
| // Incomplete Downloads | |
| // Firefox downloads | |
| *.part | |
| // Chrom(ium|e) downloads | |
| *.crdownload | |
| // Transmission downloads | |
| *.part | |
| // Temporary/Backup Files | |
| *~ | |
| .*.swp | |
| // OS-generated files (linux) | |
| .directory | |
| .Trash-* | |
| // OS-generated files (macOS) | |
| .DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| // Icon must end with two \r | |
| Icon | |
| // Thumbnails (metadata) | |
| ._* | |
| // Files that might appear in the root of a volume | |
| .DocumentRevisions-V100 | |
| .fseventsd | |
| .Spotlight-V100 | |
| .TemporaryItems | |
| .Trashes | |
| .VolumeIcon.icns | |
| .com.apple.timemachine.donotpresent | |
| .localized | |
| // Directories potentially created on remote AFP share | |
| .AppleDB | |
| .AppleDesktop | |
| Network Trash Folder | |
| Temporary Items | |
| .apdisk | |
| // iCloud temp files | |
| .iCloud* | |
| // OS-generated files (Windows) | |
| // Windows thumbnail cache files | |
| Thumbs.db | |
| Thumbs.db:encryptable | |
| ehthumbs.db | |
| ehthumbs_vista.db | |
| // Dump file | |
| *.stackdump | |
| // Folder config file | |
| [Dd]esktop.ini | |
| // Recycle Bin used on file shares | |
| $RECYCLE.BIN/ | |
| // Windows Installer files | |
| *.cab | |
| *.msi | |
| *.msix | |
| *.msm | |
| *.msp | |
| // Windows shortcuts | |
| *.ln | |
| // Microsoft Office temp files | |
| (?d)~* | |
| // BTSync files | |
| .sync | |
| *.bts | |
| *.!Sync | |
| .SyncID | |
| .SyncIgnore | |
| .SyncArchive | |
| *.SyncPart | |
| *.SyncTemp | |
| *.SyncOld | |
| // Synology files | |
| @eaDir | |
| // Syncthing files | |
| .stignore | |
| .stfolder | |
| // vim swap files | |
| (?d)*.*.sw[a-p] | |
| // Developer files | |
| node_modules | |
| bower_components | |
| dist | |
| dist-ssr | |
| coverage | |
| .nyc_output | |
| // Universal | |
| _.log | |
| _.bin | |
| (?d)build | |
| (?d)tmp | |
| (?d)log | |
| (?d)logs | |
| (?d)target |
This file contains hidden or 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
| #include .stglobalignore |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment