| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
"Black" is an "opinionated" python formatter, whose opinionatedness
is somewhat in the spirit of rustfmt.
This MR runs black with default settings on all of our python code
in Arti. It was produced by the following commands
```
# Everything in python/
black python/
# Everything with a .py extension
fd '.py$' -X black
# Everything with a python shebang.
git grep -l '#! */usr/bin/env *python' | xargs black
```
|
| |
|
|
|
|
|
|
| |
I needed to use a virtual env to run this script (it doesn't work with
the mistune version packaged by arch), but found myself unable to
without changing the interpreter directive in `maint/extract-md-links`.
Closes #1460
|
|
|
This will be used by gen_md_links, instead of the regexp-based ad-hoc
parser there.
The existing parser gets wrong things like " `#[must_use]` ",
thinking that's a link.
Use a proper Markdown parser. But, we must commit some abuse, sadly.
|