@Override
public List<Rule> getRelevantRules(ResourceBundle messages) throws IOException {
return Arrays.asList(
new HunspellRule(messages, this),
// specific to Khmer:
new KhmerSimpleReplaceRule(messages),
new KhmerWordRepeatRule(messages, this),
new KhmerUnpairedBracketsRule(messages, this),
new KhmerSpaceBeforeRule(messages, this)
);
}