mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-28 22:05:38 +00:00
31 lines
528 B
JavaScript
31 lines
528 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 `bannedWords` which is then exported with `module.exports = bannedWords;`
|
||
|
|
// This file does not contain any other code.
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
let bannedWords = ['TEST_PLACEHOLDER_SWEAR_WORD_HERE'];
|
||
|
|
|
||
|
|
module.exports = bannedWords;
|