Daniël van Noord
Daniël van Noord
Just some feedback from a regular user: would you consider turning on all shades by default? I think one of the main benefits of `black` is that after initial discussion...
Is the placement of the operator on the second line intentional? Currently this makes `--experimental-string-processing` incompatible with `main`, as it wants to put the operator + compared value back on...
I looked into this and the place to fix this is probably: https://github.com/Ionaru/easy-markdown-editor/blob/f573560bb44886d7cc8d412a0b6712f18c3081f0/src/js/easymde.js#L853 I believe the second parameter (`stat.link`) probably needs to change as that is what is controlling the...
@asottile Would you want somebody to pick up the PR you already reviewed or prefer if somebody worked on the `language: fail` solution you suggested there?
Congratulations on almost releasing the new release! Just want to provide one more data point. Issues related to https://github.com/myint/rstcheck/issues/113 have indeed been fixed in the `rc`. However, `rstcheck` now seems...
Hi @david-yz-liu, thanks for all of the work here. I think the size (and importance) of this PR has put off people from reviewing this but I think we should...
> @DanielNoord wow, thank you! So sorry for the delay, I think I saw your message and meant to reply months ago but then... forgot. My bad! > > Your...
@cdce8p Do you still want to review this before we merge this? I think with my last comments addressed this is almost good to go!
> > @cdce8p Do you still want to review this before we merge this? I think with my last comments addressed this is almost good to go! > > If...
I believe this is because `locals["x"]` returns the `AssignName` node. ```python import astroid code = """ x = {i: None for i in range(2)} """ ast = astroid.parse(code) name =...