kibana/STYLEGUIDE.md

21 lines
540 B
Markdown
Raw Normal View History

# Kibana Style Guide
This guide applies to all development within the Kibana project and is
recommended for the development of all Kibana plugins.
2016-06-10 04:03:19 +02:00
- [JavaScript](style_guides/js_style_guide.md)
- [Angular](style_guides/angular_style_guide.md)
2016-06-10 04:03:19 +02:00
- [CSS](style_guides/css_style_guide.md)
- [HTML](style_guides/html_style_guide.md)
- [API](style_guides/api_style_guide.md)
## Filenames
2014-09-16 01:06:26 +02:00
All filenames should use `snake_case`.
2014-09-16 01:06:26 +02:00
*Right:*
- `src/kibana/index_patterns/index_pattern.js`
2014-09-16 01:06:26 +02:00
*Wrong:*
- `src/kibana/IndexPatterns/IndexPattern.js`