mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-27 05:29:59 +00:00
57 lines
553 B
JavaScript
57 lines
553 B
JavaScript
|
|
/* eslint-disable no-multiple-empty-lines */
|
||
|
|
|
||
|
|
// CONTENT WARNING:
|
||
|
|
// This file contains slurs, swear words, religious oaths, and words related to addictive substance and adult topics.
|
||
|
|
// 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'];
|
||
|
|
|
||
|
|
module.exports = bannedSlurs;
|