From 2e79baae557a45b5042607826742247509423043 Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Tue, 10 Dec 2024 01:12:32 +1100 Subject: [PATCH] [8.x] Sustainable Kibana Architecture: Temporarily allow non-snake case package names (#201736) (#203404) # Backport This will backport the following commits from `main` to `8.x`: - [Sustainable Kibana Architecture: Temporarily allow non-snake case package names (#201736)](https://github.com/elastic/kibana/pull/201736) ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) Co-authored-by: Gerard Soldevila --- src/dev/run_check_file_casing.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/dev/run_check_file_casing.ts b/src/dev/run_check_file_casing.ts index 9ac610df14bd7..6b77e326abef8 100644 --- a/src/dev/run_check_file_casing.ts +++ b/src/dev/run_check_file_casing.ts @@ -26,6 +26,12 @@ run(async ({ log }) => { // so it's still super slow. This prevents loading the files // and still relies on gitignore to final ignores '**/node_modules', + // temporarily allow non-snake case for module names + // during relocation packages and plugins + // in the context of Sustainable Kibana Architecture + 'src/platform/**', + 'x-pack/platform/**', + 'x-pack/solutions/**', ], });