Add a list of false positives to reduce unjustified filtering #2
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When a word contains a profanity, like
assassins, the word could be the check inside a dictionary.Yes, this flaw is mentioned in the
README:However, I wouldn't go as far as to have a dictionary of words, as that would significantly impact the performance.
I don't think it will
significantly impact the performance.With a good implementation, like {a cool buzzword}, it could be super efficient!
The Oxford English Dictionary has over 200k words listed, and assuming we add support for multiple languages, it'd definitely have a huge impact on the performance.
I don't think adding a whole dictionary is acceptable performance-wise, but I do think that adding a list of all words that have a profanity in them but aren't necessary profane (e.g.
assassins, as you mentioned) would be a great idea, and much more viable.