Skip to content

Commit

Permalink
Sustainable Kibana Architecture: Temporarily allow non-snake case pac…
Browse files Browse the repository at this point in the history
…kage names (elastic#201736)

## Summary

In the context of _Sustainable Kibana Architecture_, we want to relocate
plugins and packages to dedicated solutions folders.
Current CI checks enforce snake case for new package names, and we
cannot afford the extra churn of renaming all packages' folders during
relocation.

The PR aims at relaxing this constraint, only for the target folders of
the relocation.
  • Loading branch information
gsoldevila authored Nov 26, 2024
1 parent bfbb02a commit 2850f68
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/dev/run_check_file_casing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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/**',
],
});

Expand Down

0 comments on commit 2850f68

Please sign in to comment.