2020-07-04 00:47:30 +00:00
|
|
|
let Rule =
|
|
|
|
{ Type = { regex : Text, why : Text }
|
|
|
|
, default = { regex = "", why = "" }
|
|
|
|
}
|
|
|
|
|
2020-07-05 11:41:28 +00:00
|
|
|
in [ Rule::{ regex = "(n|z)igg(er|a)", why = "racism" }
|
2020-07-13 13:40:00 +00:00
|
|
|
--, Rule::{ regex = "(idiot|stupid|dumb)", why = "slurs" }
|
2020-07-05 11:41:28 +00:00
|
|
|
, Rule::{ regex = "autist", why = "slur" }
|
|
|
|
, Rule::{ regex = "insane", why = "slur" }
|
|
|
|
, Rule::{ regex = "(re|)tard(|ed)", why = "ableism" }
|
|
|
|
, Rule::{ regex = "schizo", why = "ableism" }
|
|
|
|
, Rule::{ regex = "(hitler|trump)", why = "contentious political figures" }
|
|
|
|
, Rule::{ regex = "tran(ny|nie)", why = "transphobia" }
|
|
|
|
, Rule::{ regex = "fag", why = "homophobia" }
|
|
|
|
, Rule::{ regex = "\\b1488\\b", why = "white supremacist" }
|
|
|
|
, Rule::{
|
|
|
|
, regex = "transsexual"
|
|
|
|
, why = "probably false alarm, but transphobia"
|
|
|
|
}
|
2020-07-05 12:36:08 +00:00
|
|
|
, Rule::{ regex = "chimp out", why = "racism" }
|
|
|
|
, Rule::{ regex = "kike", why = "antisemitism" }
|
|
|
|
, Rule::{ regex = "fat trixie", why = "icjb" }
|
|
|
|
, Rule::{ regex = "soros", why = "conspiracy theories" }
|
|
|
|
, Rule::{ regex = "(foal|loli)con", why = "illegal stuff" }
|
2020-07-06 17:25:07 +00:00
|
|
|
, Rule::{ regex = "cuck", why = "slur" }
|
2020-07-07 02:49:39 +00:00
|
|
|
, Rule::{ regex = "mods gay", why = "Nuke" }
|
2020-07-10 01:37:57 +00:00
|
|
|
, Rule::{ regex = "劉曉波动态网自由门", why = "spam" }
|
2020-07-05 11:41:28 +00:00
|
|
|
]
|