Txt Package: Update stopwords.txt and stopwords.go

Exclude common unix storage device names.

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer 2022-07-14 17:46:41 +02:00
parent 99a99a0868
commit da2cb2c55f
2 changed files with 18 additions and 0 deletions

View File

@ -59,6 +59,15 @@ export
abc
val
tmp
drv
sda
sdb
sdc
sdd
hda
hdb
hdc
hdd
xyz
jpg
jpeg

View File

@ -65,6 +65,15 @@ var StopWords = map[string]bool{
"abc": true,
"val": true,
"tmp": true,
"drv": true,
"sda": true,
"sdb": true,
"sdc": true,
"sdd": true,
"hda": true,
"hdb": true,
"hdc": true,
"hdd": true,
"xyz": true,
"jpg": true,
"jpeg": true,