83a1b9c34e
Also moves bannedSlurs.js to the same directory as bannedWords.js.
88 lines
744 B
JavaScript
88 lines
744 B
JavaScript
/* eslint-disable no-multiple-empty-lines */
|
|
|
|
// CONTENT WARNING:
|
|
// This file contains slurs on race, gender, sexual orientation, etc.
|
|
// Do not read this file if you do not want to be exposed to those words.
|
|
// The words are stored in an array called `bannedSlurs` which is then exported with `module.exports = bannedSlurs;`
|
|
// This file does not contain any other code.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let bannedSlurs = [
|
|
'TEST_PLACEHOLDER_SLUR_WORD_HERE',
|
|
|
|
'nigger',
|
|
'niggers',
|
|
'nigga',
|
|
'niggas',
|
|
'fag',
|
|
'fags',
|
|
'faggot',
|
|
'faggots',
|
|
'whore',
|
|
'whores',
|
|
'slut',
|
|
'sluts',
|
|
'cunt',
|
|
'cunts',
|
|
'spic',
|
|
'spics',
|
|
'tranny',
|
|
'trannies',
|
|
'tard',
|
|
'tards',
|
|
];
|
|
|
|
module.exports = bannedSlurs;
|