Files
OmniRoute/open-sse/services/compression/rules/fr/ultra.json
Diego Rodrigues de Sa e Souza 0adae00c7b Release v3.8.42 (#5459)
Release v3.8.42 — full CHANGELOG in CHANGELOG.md.

CI: 103 checks green incl. CodeQL (all languages), Semgrep, all 8 unit shards,
coverage, Node 24 compat, and integration tests. Full unit suite validated
locally: 19437 pass / 0 fail. The 3 red checks are advisory and do not gate
main (no required status checks): SonarCloud/SonarQube new-code coverage gate,
and PR Test Policy (test-masking detector flagging the legitimate dead-Phind
provider removal in #5530 — reviewed, correct).

Includes cycle-close reconciliation + repair of inherited base-red tests from
#5480/#5527/#5427/#5521 that the PR->release fast-path did not exercise.
2026-06-30 06:54:29 -03:00

108 lines
2.8 KiB
JSON

{
"language": "fr",
"category": "ultra",
"rules": [
{
"name": "fr_articles",
"pattern": "\\b(?:[Ll]e|[Ll]a|[Ll]es|[Uu]n|[Uu]ne|[Dd]es|[Dd]u)\\s+(?=[a-zàâçéèêëîïôûùüÿœ])",
"flags": "g",
"replacement": "",
"context": "all",
"category": "terse",
"minIntensity": "full"
},
{
"name": "fr_leader_phrases",
"pattern": "^(?:je vais|je peux|nous allons|nous pouvons|laisse-moi|on peut)\\s+(?=[a-zàâçéèêëîïôûùüÿœ])",
"replacement": "",
"context": "all",
"category": "terse",
"minIntensity": "full"
},
{
"name": "fr_ultra_database_abbreviation",
"pattern": "\\bbase de données\\b",
"replacement": "BD",
"context": "all",
"category": "ultra",
"minIntensity": "ultra"
},
{
"name": "fr_ultra_config_abbreviation",
"pattern": "\\bconfiguration\\b",
"replacement": "config",
"context": "all",
"category": "ultra",
"minIntensity": "ultra"
},
{
"name": "fr_ultra_function_abbreviation",
"pattern": "\\bfonction\\b",
"replacement": "fn",
"context": "all",
"category": "ultra",
"minIntensity": "ultra"
},
{
"name": "fr_ultra_request_abbreviation",
"pattern": "\\b(?:requête|demande)\\b",
"replacement": "req",
"context": "all",
"category": "ultra",
"minIntensity": "ultra"
},
{
"name": "fr_ultra_response_abbreviation",
"pattern": "\\bréponse\\b",
"replacement": "rép",
"context": "all",
"category": "ultra",
"minIntensity": "ultra"
},
{
"name": "fr_ultra_implementation_abbreviation",
"pattern": "\\bimplémentation\\b",
"replacement": "impl",
"context": "all",
"category": "ultra",
"minIntensity": "ultra"
},
{
"name": "fr_ultra_authentication_abbreviation",
"pattern": "\\bauthentification\\b",
"replacement": "auth",
"context": "all",
"category": "ultra",
"minIntensity": "ultra"
},
{
"name": "fr_ultra_authorization_abbreviation",
"pattern": "\\bautorisation\\b",
"replacement": "authz",
"context": "all",
"category": "ultra",
"minIntensity": "ultra"
},
{
"name": "fr_ultra_application_abbreviation",
"pattern": "\\bapplication\\b",
"replacement": "app",
"context": "all",
"category": "ultra",
"minIntensity": "ultra"
},
{
"name": "fr_ultra_dependency_abbreviation",
"pattern": "\\b(?:dépendance|dépendances)\\b",
"replacement": "dép",
"replacementMap": {
"dépendance": "dép",
"dépendances": "déps"
},
"context": "all",
"category": "ultra",
"minIntensity": "ultra"
}
]
}