|
1 | 1 | # ***STOP READING IMMEDIATELY***
|
2 | 2 |
|
3 |
| -# THIS PAGE PROBABLY DOES **NOT** PERTAIN TO YOU |
| 3 | +## THIS PAGE PROBABLY DOES **NOT** PERTAIN TO YOU. |
4 | 4 |
|
5 |
| -# These are Coding Guidelines for ***Contributors to TypeScript*** |
| 5 | +These are Coding Guidelines for ***Contributors to TypeScript***. |
| 6 | +This is ***NOT*** a prescriptive guideline for the TypeScript community. |
| 7 | +These guidelines are meant for **contributors to the TypeScript project's codebase**. |
| 8 | +We have chosen many of them for team consistency. Feel free to adopt them for your own team. \ |
| 9 | +\ |
| 10 | +AGAIN: This is ***NOT*** a prescriptive guideline for the TypeScript community |
| 11 | +-------------------- |
6 | 12 |
|
7 |
| -# This is ***NOT*** a prescriptive guideline for the TypeScript community |
8 |
| - |
9 |
| -# These guidelines are meant for **contributors to the TypeScript project's codebase**. |
10 |
| - |
11 |
| -# We have chosen many of them for team consistency. Feel free to adopt them for your own team. |
12 |
| - |
13 |
| -# AGAIN: This is ***NOT*** a prescriptive guideline for the TypeScript community |
14 |
| - |
15 |
| -# **Please do not file issues about these guidelines.** |
| 13 | +## **Please do not file issues about these guidelines.** |
16 | 14 |
|
17 | 15 | ## Names
|
18 | 16 |
|
19 | 17 | 1. Use PascalCase for type names.
|
20 |
| -2. Do not use "I" as a prefix for interface names. |
| 18 | +2. Do not use `I` as a prefix for interface names. |
21 | 19 | 3. Use PascalCase for enum values.
|
22 | 20 | 4. Use camelCase for function names.
|
23 | 21 | 5. Use camelCase for property names and local variables.
|
24 |
| -6. Do not use "_" as a prefix for private properties. |
| 22 | +6. Do not use `_` as a prefix for private properties. |
25 | 23 | 7. Use whole words in names when possible.
|
26 | 24 |
|
27 |
| -## Components |
| 25 | +## Components |
28 | 26 | 1. 1 file per logical component (e.g. parser, scanner, emitter, checker).
|
29 | 27 | 2. Do not add new files. :)
|
30 |
| -3. files with ".generated.*" suffix are auto-generated, do not hand-edit them. |
| 28 | +3. files with `.generated.*` suffix are auto-generated, do not hand-edit them. |
31 | 29 |
|
32 | 30 | ## Types
|
33 | 31 | 1. Do not export types/functions unless you need to share it across multiple components.
|
34 | 32 | 2. Do not introduce new types/values to the global namespace.
|
35 |
| -3. Shared types should be defined in 'types.ts'. |
| 33 | +3. Shared types should be defined in `types.ts`. |
36 | 34 | 4. Within a file, type definitions should come first.
|
37 | 35 |
|
38 | 36 | ## `null` and `undefined`
|
39 |
| -1. Use **undefined**. Do not use null. |
| 37 | +1. Use `undefined`. Do not use null. |
40 | 38 |
|
41 | 39 | ## General Assumptions
|
42 | 40 | 1. Consider objects like Nodes, Symbols, etc. as immutable outside the component that created them. Do not change them.
|
43 | 41 | 2. Consider arrays as immutable by default after creation.
|
44 | 42 |
|
45 | 43 | ## Classes
|
46 | 44 | 1. For consistency, do not use classes in the core compiler pipeline. Use function closures instead.
|
47 |
| - |
| 45 | + |
48 | 46 | ## Flags
|
49 | 47 | 1. More than 2 related Boolean properties on a type should be turned into a flag.
|
50 | 48 |
|
@@ -82,15 +80,15 @@ For a variety of reasons, we avoid certain constructs, and use some of our own.
|
82 | 80 |
|
83 | 81 | 1. Use arrow functions over anonymous function expressions.
|
84 | 82 | 2. Only surround arrow function parameters when necessary. <br />For example, `(x) => x + x` is wrong but the following are correct:
|
85 |
| - 1. `x => x + x` |
86 |
| - 2. `(x,y) => x + y` |
87 |
| - 3. `<T>(x: T, y: T) => x === y` |
| 83 | + - `x => x + x` |
| 84 | + - `(x,y) => x + y` |
| 85 | + - `<T>(x: T, y: T) => x === y` |
88 | 86 | 3. Always surround loop and conditional bodies with curly braces. Statements on the same line are allowed to omit braces.
|
89 | 87 | 4. Open curly braces always go on the same line as whatever necessitates them.
|
90 | 88 | 5. Parenthesized constructs should have no surrounding whitespace. <br />A single space follows commas, colons, and semicolons in those constructs. For example:
|
91 |
| - 1. `for (var i = 0, n = str.length; i < 10; i++) { }` |
92 |
| - 2. `if (x < 10) { }` |
93 |
| - 3. `function f(x: number, y: string): void { }` |
| 89 | + - `for (var i = 0, n = str.length; i < 10; i++) { }` |
| 90 | + - `if (x < 10) { }` |
| 91 | + - `function f(x: number, y: string): void { }` |
94 | 92 | 6. Use a single declaration per variable statement <br />(i.e. use `var x = 1; var y = 2;` over `var x = 1, y = 2;`).
|
95 | 93 | 7. `else` goes on a separate line from the closing curly brace.
|
96 | 94 | 8. Use 4 spaces per indentation.
|
0 commit comments