tron/regexes.dhall

29 lines
1.2 KiB
Plaintext

let Rule =
{ Type = { regex : Text, why : Text }
, default = { regex = "", why = "" }
}
in [ Rule::{ regex = "(n|z)igg(er|a)", why = "racism" }
--, Rule::{ regex = "(idiot|stupid|dumb)", why = "slurs" }
, 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"
}
, 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" }
, Rule::{ regex = "cuck", why = "slur" }
, Rule::{ regex = "mods gay", why = "Nuke" }
, Rule::{ regex = "劉曉波动态网自由门", why = "spam" }
]