OLD | NEW |
1 # 0.2.7 | 1 # 0.2.7 |
2 | 2 |
3 * Make it strong mode clean. | 3 * Make it strong mode clean. |
4 * Put labels on their own line (#43). | 4 * Put labels on their own line (#43). |
5 * Gracefully handle IO errors when failing to overwrite a file (#473). | 5 * Gracefully handle IO errors when failing to overwrite a file (#473). |
| 6 * Add a blank line after local functions, to match top level ones (#488). |
6 * Improve indentation in non-block-bodied control flow statements (#494). | 7 * Improve indentation in non-block-bodied control flow statements (#494). |
7 * Better indentation on very long return types (#503). | 8 * Better indentation on very long return types (#503). |
8 * When calling from JS, guess at which error to show when the code cannot be | 9 * When calling from JS, guess at which error to show when the code cannot be |
9 parsed (#504). | 10 parsed (#504). |
10 * Force a conditional operator to split if the condition does (#506). | 11 * Force a conditional operator to split if the condition does (#506). |
11 * Preserve trailing commas in argument and parameter lists (#509). | 12 * Preserve trailing commas in argument and parameter lists (#509). |
12 * Split arguments preceded by comments (#511). | 13 * Split arguments preceded by comments (#511). |
13 * Remove newlines after script tags (#513). | 14 * Remove newlines after script tags (#513). |
14 * Split before a single named argument if the argument itself splits (#514). | 15 * Split before a single named argument if the argument itself splits (#514). |
15 * Indent initializers in multiple variable declarations. | 16 * Indent initializers in multiple variable declarations. |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 | 196 |
196 # 0.1.2 | 197 # 0.1.2 |
197 | 198 |
198 * Move split conditional operators to the beginning of the next line. | 199 * Move split conditional operators to the beginning of the next line. |
199 | 200 |
200 # 0.1.1 | 201 # 0.1.1 |
201 | 202 |
202 * Support formatting enums (#120). | 203 * Support formatting enums (#120). |
203 * Handle Windows line endings in multiline strings (#126). | 204 * Handle Windows line endings in multiline strings (#126). |
204 * Increase nesting for conditional operators (#122). | 205 * Increase nesting for conditional operators (#122). |
OLD | NEW |