mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-27 00:04:37 +08:00
* Migrate users controller + other things * Undo import rename * Fix return type * Change status code * Fix spacing
23 lines
282 B
TypeScript
23 lines
282 B
TypeScript
// Sorry for the bad words
|
|
const profanities = [
|
|
"miodec",
|
|
"bitly",
|
|
"fuck",
|
|
"bitch",
|
|
"shit",
|
|
"pussy",
|
|
"nigga",
|
|
"niqqa",
|
|
"niqqer",
|
|
"nigger",
|
|
"ni99a",
|
|
"ni99er",
|
|
"niggas",
|
|
"niga",
|
|
"niger",
|
|
"cunt",
|
|
"faggot",
|
|
"retard",
|
|
];
|
|
|
|
export default profanities;
|