kibana/STYLEGUIDE.md
Stacey Gammon 0faa7aec5b
Add a typescript readme (#23841) (#24128)
* Add a typescript readme

* some clean up

* Correct capitalization of typescript and javascript

* Incorporate review suggestions
2018-10-17 10:03:27 -04:00

937 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

TypeScript vs JavaScript

Whenever possible, write code in TypeScript instead of javascript, especially if it's new code. Check out TYPESCRIPT.md for help with this process.