Open MicaelJarniac opened 2 years ago
Related to #41. I'm still not too sure about this one, but I think it does make sense for some tools to only run inside src/.
src/
Maybe just ignoring venv/ and .venv/ might do the trick for most tools.
venv/
.venv/
Maybe configure tools to obey .gitignore.
.gitignore
https://pycqa.github.io/isort/docs/configuration/options.html#git-ignore https://black.readthedocs.io/en/stable/usage_and_configuration/file_collection_and_discovery.html#gitignore
Running on tests/ and noxfile.py might also be a good idea, though.
tests/
noxfile.py
Related to #41. I'm still not too sure about this one, but I think it does make sense for some tools to only run inside
src/
.Maybe just ignoring
venv/
and.venv/
might do the trick for most tools.