kibana/STYLEGUIDE.md
Court Ewing 7dae7bde27 Current styleguide conventions with modern JS (#7435)
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.
2016-11-01 21:22:59 -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