From 39bc24ee0d89e4bd046c42135869f3a08768af52 Mon Sep 17 00:00:00 2001 From: Gerard Soldevila Date: Tue, 26 Nov 2024 11:28:36 +0100 Subject: [PATCH] Temporarily allow non-snake case package names --- 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 9ac610df14bd..6b77e326abef 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/**', ], });