From fc4cc312245bc7fbcdda43bf3888e4a9aab734fa Mon Sep 17 00:00:00 2001 From: Roardom Date: Wed, 4 Jun 2025 09:39:39 +0000 Subject: [PATCH] refactor: exclude lang folders from code formatting So that weblate has control over the formatting. Since Weblate doesn't allow us to choose the format of the code it uses for the language files unfortunately. --- pint.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pint.json b/pint.json index a10db7c08..c8bd59aed 100644 --- a/pint.json +++ b/pint.json @@ -1,5 +1,6 @@ { "preset": "psr12", + "exclude": "lang", "rules": { "align_multiline_comment": true, "array_indentation": true, @@ -88,4 +89,4 @@ } } } -} \ No newline at end of file +}