kibana/STYLEGUIDE.md
jasper e979cc8b76 Current styleguide conventions with modern JS (#8928)
Backports PR #7435

**Commit 1:**
Current styleguide conventions with modern JS

The existing styleguide was in great need of a rewrite as it did not
reflect the conventions we're using in the codebase or even the best
practices that we follow. In some cases, the guidance it provided was
outright contrary to our current practices.

* Original sha: 13e501bcf9
* Authored by Court Ewing <court@epixa.com> on 2016-06-12T14:03:13Z
2016-11-01 21:23:53 -04:00

540 B

Kibana Style Guide

This guide applies to all development within the Kibana project and is recommended for the development of all Kibana plugins.

Filenames

All filenames should use snake_case.

Right:

  • src/kibana/index_patterns/index_pattern.js

Wrong:

  • src/kibana/IndexPatterns/IndexPattern.js