mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
88 lines
967 B
JavaScript
88 lines
967 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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Some words that are slurs in English are not included here because they are valid words in other languages and so must not cause an automatic mute.
|
|
// See the comments in bannedWords.js for details.
|
|
|
|
let bannedSlurs = [
|
|
'TEST_PLACEHOLDER_SLUR_WORD_HERE',
|
|
|
|
'nigger',
|
|
'niggers',
|
|
'nigga',
|
|
'niggas',
|
|
'fags',
|
|
'faggot',
|
|
'faggots',
|
|
'whore',
|
|
'whores',
|
|
'sluts',
|
|
'cunt',
|
|
'cunts',
|
|
'spic',
|
|
'spics',
|
|
'tranny',
|
|
'trannies',
|
|
'tards',
|
|
'https://gemsvaluesfix.typeform.com/to/QNXiU4',
|
|
];
|
|
|
|
module.exports = bannedSlurs;
|