|
23 | 23 | - Look at the 'pyproject.toml' file to see if it contains style information for |
24 | 24 | YAPF. |
25 | 25 | ### Changed |
26 | | -- Do not scan exlcuded directories. Prior versions would scan an exluded |
| 26 | +- Do not scan excluded directories. Prior versions would scan an excluded |
27 | 27 | folder then exclude its contents on a file by file basis. Preventing the |
28 | 28 | folder being scanned is faster. |
29 | 29 | ### Fixed |
|
252 | 252 | ### Fixed |
253 | 253 | - Use tabs when constructing a continuation line when `USE_TABS` is enabled. |
254 | 254 | - A dictionary entry may not end in a colon, but may be an "unpacking" |
255 | | - operation: `**foo`. Take that into accound and don't split after the |
| 255 | + operation: `**foo`. Take that into account and don't split after the |
256 | 256 | unpacking operator. |
257 | 257 |
|
258 | 258 | ## [0.20.1] 2018-01-13 |
|
675 | 675 | - Retain proper vertical spacing before comments in a data literal. |
676 | 676 | - Make sure that continuations from a compound statement are distinguished from |
677 | 677 | the succeeding line. |
678 | | -- Ignore preceding comments when calculating what is a "dictonary maker". |
| 678 | +- Ignore preceding comments when calculating what is a "dictionary maker". |
679 | 679 | - Add a small penalty for splitting before a closing bracket. |
680 | 680 | - Ensure that a space is enforced after we remove a pseudo-paren that's between |
681 | 681 | two names, keywords, numbers, etc. |
|
703 | 703 | - Improve splitting heuristic when the first argument to a function call is |
704 | 704 | itself a function call with arguments. In cases like this, the remaining |
705 | 705 | arguments to the function call would look badly aligned, even though they are |
706 | | - techincally correct (the best kind of correct!). |
| 706 | + technically correct (the best kind of correct!). |
707 | 707 | - Improve splitting heuristic more so that if the first argument to a function |
708 | 708 | call is a data literal that will go over the column limit, then we want to |
709 | 709 | split before it. |
|
0 commit comments