OLD | NEW |
1 # 0.1.4 | 1 # 0.1.4 |
2 | 2 |
3 * Don't mangle comma after function-typed initializing formal (#156). | 3 * Don't mangle comma after function-typed initializing formal (#156). |
4 * Add `--dry-run` option to show files that need formatting (#67). | 4 * Add `--dry-run` option to show files that need formatting (#67). |
5 * Try to avoid splitting in before index argument (#158, #160). | 5 * Try to avoid splitting in before index argument (#158, #160). |
6 * Support `await for` statements (#154). | 6 * Support `await for` statements (#154). |
7 * Don't delete commas between enum values with doc comments (#171). | 7 * Don't delete commas between enum values with doc comments (#171). |
| 8 * Allow `-t` flag to preserve compability with old formatter (#166). |
8 | 9 |
9 # 0.1.3 | 10 # 0.1.3 |
10 | 11 |
11 * Split different operators with the same precedence equally (#130). | 12 * Split different operators with the same precedence equally (#130). |
12 * No spaces for empty for loop clauses (#132). | 13 * No spaces for empty for loop clauses (#132). |
13 * Don't touch files whose contents did not change (#127). | 14 * Don't touch files whose contents did not change (#127). |
14 * Skip formatting files in hidden directories (#125). | 15 * Skip formatting files in hidden directories (#125). |
15 * Don't include trailing whitespace when preserving selection (#124). | 16 * Don't include trailing whitespace when preserving selection (#124). |
16 * Force constructor initialization lists to their own line if the parameter | 17 * Force constructor initialization lists to their own line if the parameter |
17 list is split across multiple lines (#151). | 18 list is split across multiple lines (#151). |
18 * Allow splitting in index operator calls (#140). | 19 * Allow splitting in index operator calls (#140). |
19 * Handle sync* and async* syntax (#151). | 20 * Handle sync* and async* syntax (#151). |
20 * Indent the parameter list more if the body is a wrapped "=>" (#144). | 21 * Indent the parameter list more if the body is a wrapped "=>" (#144). |
21 | 22 |
22 # 0.1.2 | 23 # 0.1.2 |
23 | 24 |
24 * Move split conditional operators to the beginning of the next line. | 25 * Move split conditional operators to the beginning of the next line. |
25 | 26 |
26 # 0.1.1 | 27 # 0.1.1 |
27 | 28 |
28 * Support formatting enums (#120). | 29 * Support formatting enums (#120). |
29 * Handle Windows line endings in multiline strings (#126). | 30 * Handle Windows line endings in multiline strings (#126). |
30 * Increase nesting for conditional operators (#122). | 31 * Increase nesting for conditional operators (#122). |
OLD | NEW |