Spaces:
Runtime error
Runtime error
File size: 784 Bytes
cd8bd0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | {
"language": "de",
"category": "structural",
"rules": [
{
"name": "de_purpose",
"pattern": "\\b(?:um zu|mit dem ziel|damit ich)\\b\\s*",
"replacement": "um ",
"context": "all",
"category": "structural",
"minIntensity": "lite"
},
{
"name": "de_connectors",
"pattern": "\\b(?:ausserdem|außerdem|zusaetzlich|zusätzlich|darueber hinaus|darüber hinaus)\\b\\s*",
"replacement": "auch ",
"context": "all",
"category": "structural",
"minIntensity": "lite"
},
{
"name": "de_emphasis",
"pattern": "\\b(?:sehr|wirklich|extrem|ziemlich)\\s+(?=[a-zäöüß])",
"replacement": "",
"context": "all",
"category": "structural",
"minIntensity": "lite"
}
]
}
|