Vim/STYLE.md

19 lines
763 B
Markdown
Raw Normal View History

# Style Guide
2016-07-13 22:29:29 +03:00
In addition, to VS Code's [coding guidelines](https://github.com/Microsoft/vscode/wiki/Coding-Guidelines), please adhere
to the following:
2016-09-28 09:16:48 +03:00
2018-07-29 12:27:28 +03:00
- Use `for ... of` whenever possible
2016-07-13 22:29:29 +03:00
2016-09-28 09:16:48 +03:00
**Rationale:** `for ... of` is awesome. It's more readable than any other variant.
2016-07-13 22:29:29 +03:00
- Do not use `any` except when necessary
2016-07-13 22:29:29 +03:00
**Rationale:** The language is called *Type*Script, not *Untyped*Script. :wink: Static typing is wonderful.
It catches bugs and improves readability. We should strive to use it as much as possible.
2016-07-13 22:29:29 +03:00
2018-07-29 12:27:28 +03:00
- Use `const` wherever possible.
2016-07-13 22:29:29 +03:00
**Rationale:** Instead of reading `const` as "constant value," read it as "single assignment."
Yes, it means "constant value" in other programming languages, but it's a little different in JavaScript.