mirror of
https://github.com/elastic/kibana.git
synced 2025-04-22 08:49:27 -04:00
* add architecture styleguide * be clearer about application architecture * define as plugin architecture and downplay the webpack alias and shims that are available * fix typo, simplify server description
21 lines
587 B
Markdown
21 lines
587 B
Markdown
# Kibana Style Guide
|
|
|
|
This guide applies to all development within the Kibana project and is
|
|
recommended for the development of all Kibana plugins.
|
|
|
|
- [JavaScript](style_guides/js_style_guide.md)
|
|
- [Angular](style_guides/angular_style_guide.md)
|
|
- [CSS](style_guides/css_style_guide.md)
|
|
- [HTML](style_guides/html_style_guide.md)
|
|
- [API](style_guides/api_style_guide.md)
|
|
- [Architecture](style_guides/architecture.md)
|
|
|
|
## Filenames
|
|
|
|
All filenames should use `snake_case`.
|
|
|
|
*Right:*
|
|
- `src/kibana/index_patterns/index_pattern.js`
|
|
|
|
*Wrong:*
|
|
- `src/kibana/IndexPatterns/IndexPattern.js`
|