electron/docs/development/coding-style.md

29 lines
1 KiB
Markdown
Raw Normal View History

2013-09-09 07:35:57 +00:00
# Coding style
2013-08-14 22:43:35 +00:00
## C++ and Python
For C++ and Python, we just follow Chromium's [Coding
Style](http://www.chromium.org/developers/coding-style), there is also a
script `script/cpplint.py` to check whether all files confirm.
2013-08-14 22:43:35 +00:00
The python's version we are using now is Python 2.7.
## CoffeeScript
For CoffeeScript, we follow GitHub's [Style
Guide](https://github.com/styleguide/javascript), and also following rules:
2013-08-14 22:43:35 +00:00
* Files should **NOT** end with new line, because we want to match Google's
styles.
* File names should be concatenated with `-` instead of `_`, e.g.
`file-name.coffee` rather than `file_name.coffee`, because in
[github/atom](https://github.com/github/atom) module names are usually in
2015-04-23 23:32:41 +00:00
the `module-name` form, this rule only applies to `.coffee` files.
2013-08-14 22:43:35 +00:00
## API Names
When creating a new API, we should prefer getters and setters instead of
jQuery's one-function style, for example, `.getText()` and `.setText(text)`
are preferred to `.text([text])`. There is a
2015-04-16 03:31:12 +00:00
[discussion](https://github.com/atom/electron/issues/46) of this.