move as much of the code structure to the top as possible
I do the opposite and move all source code to a generic named src or similar, because the alternative creates even more clutter in the root dir IMO by mixing relevant and irrelevant files. And generic names like src, docs, and tests help keeping a similar structure for different repos.
I do the opposite and move all source code to a generic named
src
or similar, because the alternative creates even more clutter in the root dir IMO by mixing relevant and irrelevant files. And generic names likesrc
,docs
, andtests
help keeping a similar structure for different repos.