From 55d0951ccce538f23fcdcfd90302b7396b59e1ea Mon Sep 17 00:00:00 2001 From: David Taylor Date: Wed, 26 Feb 2025 17:24:03 +0000 Subject: [PATCH] DEV: Hide non-en locale files in IDE search (#31527) These files are managed automatically via crowdin, so they should never be edited locally. Adding them to `.ignore` will stop them polluting search results in IDEs which support `.ignore` (e.g. VSCode) --- .ignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.ignore b/.ignore index 1b32cf18a30..efe720379b2 100644 --- a/.ignore +++ b/.ignore @@ -6,3 +6,7 @@ # though they're not git-tracked !/.vscode/settings.json !/.vscode/tasks.json + +# Hide non-en locales from IDE search. They are managed in crowdin +**/config/locales/*.yml +!**/config/locales/*.en.yml