I want to use language_tool_python to do a spell and grammar check in German. Unfortunately the MISSING_VERB- rule is disabled on default as far as I understand, I would need it enabled though. Is there any way to enable it via a configurations file or something like that? It would already be an enormous help if I could see which rules are currently enabled in my application.
language_tool_python isn’t developed by us, but with our API, you can send enabledRules=MISSING_VERB
as a parameter to turn on that rule. Maybe language_tool_python offers setting that parameter, too.
1 Like
Thank you very much, it does have that parameter. Is there any way I can enable all disabled rules in the category GRAMMAR?
Maybe enabledCategories=GRAMMAR
works, but I’m not sure.
1 Like