Files
habitica/website/server/libs/bannedSlurs.js
T
SabreCat 83a1b9c34e chore(words): reclassify some words as slurs
Also moves bannedSlurs.js to the same directory as bannedWords.js.
2017-07-19 21:41:08 +00:00

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;