From 4bb93d59f5a7cf2980c9fb58fed51825ec7a4fad Mon Sep 17 00:00:00 2001 From: Gerard Soldevila Date: Tue, 26 Nov 2024 10:47:54 +0100 Subject: [PATCH] Temporarily allow non-snake case package names --- src/dev/run_check_file_casing.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/dev/run_check_file_casing.ts b/src/dev/run_check_file_casing.ts index 9ac610df14bd7..1b9b9690cb3c4 100644 --- a/src/dev/run_check_file_casing.ts +++ b/src/dev/run_check_file_casing.ts @@ -26,6 +26,14 @@ 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/observability/**', + 'x-pack/security/**', + 'x-pack/search/**', ], });