Does the pants repo have an opinion or precedent f...
# development
b
Does the pants repo have an opinion or precedent for adding
README.md
files within nested subfolders where such documentation is warranted? I'm to the point on some projects where I need to write some prose and long examples as long-term documentation, and it likely doesn't belong in code comments/docstrings. On the other hand, I'm not sure that the user facing docs website is the best place either, since it's still an experimental backend and the documentation is very much into the weeds about the backend itself. Any thoughts?
h
find ./src/python -type f -name README.md
shows that there is precedent
So go for it
b
Sweet 👍
h
Benjy, tip to try out
fd
, a modern rust replacement for
find
. Similar to ripgrep