electron/docs/development/coding-style.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

79 строки
3.5 KiB
Markdown
Исходник Обычный вид История

2015-08-31 08:31:14 +03:00
# Coding Style
These are the style guidelines for coding in Electron.
2013-09-09 11:35:57 +04:00
2016-03-08 00:58:49 +03:00
You can run `npm run lint` to show any style issues detected by `cpplint` and
`eslint`.
2016-03-07 20:46:05 +03:00
## General Code
* End files with a newline.
* Place requires in the following order:
* Built in Node Modules (such as `path`)
* Built in Electron Modules (such as `ipc`, `app`)
* Local Modules (using relative paths)
* Place class properties in the following order:
* Class methods and properties (methods starting with a `@`)
* Instance methods and properties
* Avoid platform-dependent code:
* Use `path.join()` to concatenate filenames.
* Use `os.tmpdir()` rather than `/tmp` when you need to reference the
temporary directory.
* Using a plain `return` when returning explicitly at the end of a function.
* Not `return null`, `return undefined`, `null` or `undefined`
2013-08-15 02:43:35 +04:00
## C++ and Python
2015-08-31 08:31:14 +03:00
For C++ and Python, we follow Chromium's [Coding
Style](https://chromium.googlesource.com/chromium/src/+/refs/heads/main/styleguide/styleguide.md).
There is also a script `script/cpplint.py` to check whether all files conform.
2013-08-15 02:43:35 +04:00
2022-04-12 02:05:21 +03:00
The Python version we are using now is Python 3.9.
2013-08-15 02:43:35 +04:00
2015-08-31 08:31:14 +03:00
The C++ code uses a lot of Chromium's abstractions and types, so it's
recommended to get acquainted with them. A good place to start is
Chromium's [Important Abstractions and Data Structures](https://www.chromium.org/developers/coding-style/important-abstractions-and-data-structures)
document. The document mentions some special types, scoped types (that
automatically release their memory when going out of scope), logging mechanisms
etc.
## Documentation
2018-07-20 20:58:19 +03:00
* Write [remark](https://github.com/remarkjs/remark) markdown style.
You can run `npm run lint-docs` to ensure that your documentation changes are
formatted correctly.
2016-03-07 20:43:04 +03:00
## JavaScript
2013-08-15 02:43:35 +04:00
2020-11-02 12:58:14 +03:00
* Write [standard](https://www.npmjs.com/package/standard) JavaScript style.
* File names should be concatenated with `-` instead of `_`, e.g.
2016-03-07 20:43:04 +03:00
`file-name.js` rather than `file_name.js`, because in
2023-04-16 07:20:59 +03:00
[atom/atom](https://github.com/atom/atom) module names are usually in
2016-03-07 20:43:04 +03:00
the `module-name` form. This rule only applies to `.js` files.
* Use newer ES6/ES2015 syntax where appropriate
* [`const`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const)
for requires and other constants. If the value is a primitive, use uppercase naming (eg `const NUMBER_OF_RETRIES = 5`).
2016-03-07 20:43:04 +03:00
* [`let`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let)
for defining variables
* [Arrow functions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions)
instead of `function () { }`
* [Template literals](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals)
instead of string concatenation using `+`
2013-08-15 02:43:35 +04:00
2016-04-07 19:40:31 +03:00
## Naming Things
2013-08-15 02:43:35 +04:00
2016-04-07 19:40:31 +03:00
Electron APIs uses the same capitalization scheme as Node.js:
* When the module itself is a class like `BrowserWindow`, use `PascalCase`.
* When the module is a set of APIs, like `globalShortcut`, use `camelCase`.
* When the API is a property of object, and it is complex enough to be in a
separate chapter like `win.webContents`, use `mixedCase`.
* For other non-module APIs, use natural titles, like `<webview> Tag` or
`Process Object`.
2016-04-07 19:40:31 +03:00
When creating a new API, it is preferred to use getters and setters instead of
2015-08-31 08:31:14 +03:00
jQuery's one-function style. For example, `.getText()` and `.setText(text)`
are preferred to `.text([text])`. There is a
2016-04-01 02:49:59 +03:00
[discussion](https://github.com/electron/electron/issues/46) on this.