|
|
|
@ -1,15 +1,15 @@ |
|
|
|
# TODOs, notes, and various thoughts |
|
|
|
# TODOs, notes, and various thoughts |
|
|
|
|
|
|
|
|
|
|
|
## TODOs |
|
|
|
## TODOs |
|
|
|
- [ ] `=` and `\in` should be `in` in for loops |
|
|
|
- [x] `=` and `\in` should be `in` in for loops |
|
|
|
- [ ] Space after `,` in tuples, function calls, function definitions, `{}` etc. |
|
|
|
- [x] Space after `,` in tuples, function calls, function definitions, `{}` etc. |
|
|
|
- [ ] No leading/trailing space in tuples etc `( a, b )` -> `(a, b)` |
|
|
|
- [x] No leading/trailing space in tuples etc `( a, b )` -> `(a, b)` |
|
|
|
- [ ] Disallow putting kwargs before all positional args when calling functions |
|
|
|
- [ ] Disallow putting kwargs before all positional args when calling functions |
|
|
|
- [ ] Space after `;` in named tuples, keyword arguments (callsite and definitions) |
|
|
|
- [ ] Space after `;` in named tuples, keyword arguments (callsite and definitions) |
|
|
|
- [ ] Indentation |
|
|
|
- [x] Indentation |
|
|
|
- [ ] Trim trailing `;` togheter with ws. |
|
|
|
- [ ] Trim trailing `;` togheter with ws. |
|
|
|
- [ ] Whitespace in ternaries |
|
|
|
- [x] Whitespace in ternaries |
|
|
|
- [ ] Parenteses around expressions in `:` operator (e.g. `1 + 2:3` -> `(1 + 2):3)`) |
|
|
|
- [x] Parenteses around expressions in `:` operator (e.g. `1 + 2:3` -> `(1 + 2):3)`) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Ideas |
|
|
|
## Ideas |
|
|
|
|