Skip to content

Commit b6d9b16

Browse files
author
M.Mono
committed
Add .stignore file
1 parent b92cd6d commit b6d9b16

File tree

3 files changed

+70
-61
lines changed

3 files changed

+70
-61
lines changed

.stglobalignore

Lines changed: 64 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
1-
// CHECK IT AGAIN BEFORE YOU USE IT!
2-
1+
// ╔═══════════════════════════════════╗
2+
// ║ CHECK IT AGAIN BEFORE YOU USE IT! ║
3+
// ╚═══════════════════════════════════╝
34
// .stglobalignore
45

5-
// ┌----------------------------------┐
6-
// | Operating system generated files |
7-
// └----------------------------------┘
8-
// ┌------------------┐
9-
// | GNU/Linux & UN*X |
10-
// └------------------┘
11-
(?d).directory
12-
(?d).Trash-*
136

14-
// ┌-------------┐
15-
// | Apple macOS |
16-
// └-------------┘
7+
// ╔══════════════════════════════════╗
8+
// ║ Operating system generated files ║
9+
// ╚══════════════════════════════════╝
10+
// ┌─────────────┐
11+
// │ Apple macOS │
12+
// └─────────────┘
1713
(?d).DS_Store
1814
(?d).localized
1915
(?d)._*
@@ -25,49 +21,67 @@
2521
(?d).Trash-1000
2622
(?d).iCloud
2723

28-
// ┌-------------------┐
29-
// | Mcirosoft Windows |
30-
// └-------------------┘
24+
// ┌──────────────────┐
25+
// │ GNU/Linux & UN*X │
26+
// └──────────────────┘
27+
(?d).directory
28+
(?d).Trash-*
29+
30+
// ┌───────────────────┐
31+
// │ Microsoft Windows │
32+
// └───────────────────┘
3133
(?d)desktop.ini
3234
(?d)ehthumbs.db
3335
(?d)Thumbs.db
3436
(?d)$RECYCLE.BIN
3537
(?d)System Volume Information
3638

37-
// ┌--------------┐
38-
// | Synology DSM |
39-
// └--------------┘
40-
(?d)@eaDir
41-
42-
// ┌----------┐
43-
// | QNAP QTS |
44-
// └----------┘
39+
// ┌──────────┐
40+
// │ QNAP QTS │
41+
// └──────────┘
4542
(?d).AppleDB
4643
(?d).@_thumb
4744
(?d).@__thumb
4845

49-
// ┌-----------------------------┐
50-
// | Application generated files |
51-
// └-----------------------------┘
52-
// ┌-----------------┐
53-
// | Adobe Lightroom |
54-
// └-----------------┘
55-
*Previews.lrdata root-pixels.db
46+
// ┌──────────────┐
47+
// │ Synology DSM │
48+
// └──────────────┘
49+
(?d)@eaDir
5650

57-
// ┌------------------┐
58-
// | Microsoft Office |
59-
// └------------------┘
60-
~*
6151

62-
// ┌---------┐
63-
// | Dropbox |
64-
// └---------┘
52+
// ╔═════════════════════════════╗
53+
// ║ Application generated files ║
54+
// ╚═════════════════════════════╝
55+
// ┌─────────────────┐
56+
// │ Adobe Lightroom │
57+
// └─────────────────┘
58+
*Previews.lrdata root-pixels.db
59+
60+
// ┌─────────┐
61+
// │ Dropbox │
62+
// └─────────┘
6563
.dropbox
6664
.dropbox.attr
6765

68-
// ┌--------------┐
69-
// | Resilio Sync |
70-
// └--------------┘
66+
// ┌────────────────────────┐
67+
// │ Firefox & Chrom(ium│e) │
68+
// └────────────────────────┘
69+
*.part
70+
*.crdownload
71+
72+
// ┌──────────────────┐
73+
// │ Microsoft Office │
74+
// └──────────────────┘
75+
~*
76+
77+
// ┌───────────────────────────┐
78+
// │ Parallels Desktop for Mac │
79+
// └───────────────────────────┘
80+
.parallels-vm-directory
81+
82+
// ┌──────────────┐
83+
// │ Resilio Sync │
84+
// └──────────────┘
7185
.sync
7286
*.bts
7387
*.!Sync
@@ -78,25 +92,9 @@
7892
*.SyncTemp
7993
*.SyncOld
8094

81-
// ┌------------------------┐
82-
// | Firefox & Chrom(ium|e) |
83-
// └------------------------┘
84-
*.part
85-
*.crdownload
86-
87-
// ┌---------------------------┐
88-
// | Parallels Desktop for Mac |
89-
// └---------------------------┘
90-
.parallels-vm-directory
91-
92-
// ┌-----┐
93-
// | Vim |
94-
// └-----┘
95-
*.*.sw[a-p]
96-
97-
// ┌----------------------------┐
98-
// | Temporary and backup files |
99-
// └----------------------------┘
95+
// ┌────────────────────────────┐
96+
// │ Temporary and backup files │
97+
// └────────────────────────────┘
10098
*.temporary
10199
*.tmp
102100
*._mp
@@ -107,4 +105,9 @@
107105
*.dmp
108106
*.nch
109107
.*.swp
110-
*~
108+
*~
109+
110+
// ┌─────┐
111+
// │ Vim │
112+
// └─────┘
113+
*.*.sw[a-p]

.stignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// .stignore
2+
3+
include .stglobalignore

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ There are two ways to use this ignore patterns function:
66
* Just copy all ```.stglobalignore``` contents in to ```Folders -> Edit -> Ignore Patterns``` window
77

88
or
9+
* Copy both ```..stignore``` and ```.stglobalignore``` directly into your folder root
10+
11+
or
912

1013
* Paste following code into ```Folders -> Edit -> Ignore Patterns``` window and copy the ```.stglobalignore``` into folder root
1114
```

0 commit comments

Comments
 (0)