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 * Improve indentation in non-block-bodied control flow statements (#494). | 6 * Improve indentation in non-block-bodied control flow statements (#494). |
6 * Better indentation on very long return types (#503). | 7 * Better indentation on very long return types (#503). |
7 * When calling from JS, guess at which error to show when the code cannot be | 8 * When calling from JS, guess at which error to show when the code cannot be |
8 parsed (#504). | 9 parsed (#504). |
9 * Force a conditional operator to split if the condition does (#506). | 10 * Force a conditional operator to split if the condition does (#506). |
10 * Preserve trailing commas in argument and parameter lists (#509). | 11 * Preserve trailing commas in argument and parameter lists (#509). |
11 * Split arguments preceded by comments (#511). | 12 * Split arguments preceded by comments (#511). |
12 * Remove newlines after script tags (#513). | 13 * Remove newlines after script tags (#513). |
13 * Split before a single named argument if the argument itself splits (#514). | 14 * Split before a single named argument if the argument itself splits (#514). |
14 * Indent initializers in multiple variable declarations. | 15 * Indent initializers in multiple variable declarations. |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 | 195 |
195 # 0.1.2 | 196 # 0.1.2 |
196 | 197 |
197 * Move split conditional operators to the beginning of the next line. | 198 * Move split conditional operators to the beginning of the next line. |
198 | 199 |
199 # 0.1.1 | 200 # 0.1.1 |
200 | 201 |
201 * Support formatting enums (#120). | 202 * Support formatting enums (#120). |
202 * Handle Windows line endings in multiline strings (#126). | 203 * Handle Windows line endings in multiline strings (#126). |
203 * Increase nesting for conditional operators (#122). | 204 * Increase nesting for conditional operators (#122). |
OLD | NEW |