-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rewrite inappropriate names #283
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// source: https://gist.github.com/theskumar/54be20713e53d418bf02 | ||
// can add to this list in the future | ||
|
||
const banList1 = [ | ||
export const reservedNames = [ | ||
'about', 'access', 'account', 'accounts', 'add', 'address', 'adm', 'admin', 'administration', 'adult', 'advertising', 'affiliate', 'affiliates', 'ajax', 'analytics', 'android', 'anon', 'anonymous', 'api', 'app', 'apps', 'archive', 'atom', 'auth', 'authentication', 'avatar', | ||
'backup', 'banner', 'banners', 'bin', 'billing', 'blog', 'blogs', 'board', 'bot', 'bots', 'business', | ||
'chat', 'cache', 'cadastro', 'calendar', 'campaign', 'careers', 'cgi', 'client', 'cliente', 'code', 'comercial', 'compare', 'config', 'connect', 'contact', 'contest', 'create', 'code', 'compras', 'css', | ||
|
@@ -28,10 +28,29 @@ const banList1 = [ | |
'yourusername', 'yoursite', 'yourdomain', | ||
]; | ||
|
||
const banList2 = [ | ||
'anal', 'anus', 'arse', 'ass', 'ballsack', 'balls', 'bastard', 'bitch', 'biatch', 'bloody', 'blowjob', 'bollock', 'bollok', 'boner', 'boob', 'bugger', 'bum', 'butt', 'buttplug', 'clitoris', 'cock', 'coon', 'crap', 'cunt', 'damn', 'dick', 'dildo', 'dyke', 'fag', 'feck', 'fellate', 'fellatio', 'felching', 'fuck', 'fudgepacker', 'fudge', 'packer', 'flange', 'Goddamn', 'God', 'damn', 'hell', 'homo', 'jerk', 'jizz', 'knobend', 'knob', 'end', 'labia', 'lmao', 'lmfao', 'muff', 'nigger', 'nigga', 'omg', 'penis', 'piss', 'poop', 'prick', 'pube', 'pussy', 'queer', 'scrotum', 'sex', 'shit', 'sh1t', 'slut', 'smegma', 'spunk', 'tit', 'tosser', 'turd', 'twat', 'vagina', 'wank', 'whore', 'wtf', '', | ||
export const inappropriateNames = [ | ||
'alpha', 'anal', 'anus', 'arse', 'ass', | ||
'ballsack', 'balls', 'bastard', 'bbc', | ||
'bitch', 'biatch', 'bloody', 'blowjob', | ||
'bollock', 'bollok', 'boner', 'boob', | ||
'bugger', 'bum', 'butt', 'buttplug', | ||
'clitoris', 'cock', 'coon', 'crap', 'cum', | ||
'cunt', 'damn', 'dick', 'dildo', 'dyke', | ||
'edge', 'fag', 'feck', 'fellate', 'fellatio', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Edge has an appropriate definiton (the outside limit of an object, area, or surface; a place or part farthest away from the center of something) |
||
'felching', 'fuck', 'fudgepacker', 'fudge', | ||
'packer', 'flange', 'Goddamn', 'God', 'gyat', | ||
'hell', 'homo', 'horn', 'jerk', 'jizz', | ||
'knobend', 'knob', 'end', 'labia', 'lmao', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. End is not inappropriate There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. also lmao should be fine imo |
||
'lmfao', 'mew', 'muff', 'nigg', 'niqq', 'omg', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. sorry, but mew is appropriate (maybe there should be a seperate |
||
'penis', 'piss', 'poop', 'prick', 'pube', | ||
'pussy', 'queer', 'rizz', 'scrotum', 'sex', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, rizz is not an inappropriate word, as annoying as it may be |
||
'sigma', 'shit', 'sh1t', 'slut', 'smegma', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sigma is appropriate |
||
'spunk', 'tiktok', 'tit', 'toilet', 'tosser', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. tiktok is not inappropriate |
||
'turd', 'twat', 'vagina', 'wank', 'whore', | ||
'wtf', | ||
]; | ||
|
||
const banList = banList1.concat(banList2); | ||
const banList = reservedNames.concat(inappropriateNames); | ||
banList.push(''); | ||
|
||
export default banList; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alpha isn't a curse word