diff options
author | Matthias Baumgartner <dev@igsor.net> | 2022-12-18 16:34:22 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2022-12-18 16:34:22 +0100 |
commit | e1e77797454ac747b293f589d8f2e0243173a419 (patch) | |
tree | bbc69d85a5411892ea54c80542335f269a29d9e6 /README | |
download | tagit-e1e77797454ac747b293f589d8f2e0243173a419.tar.gz tagit-e1e77797454ac747b293f589d8f2e0243173a419.tar.bz2 tagit-e1e77797454ac747b293f589d8f2e0243173a419.zip |
initial commit
Diffstat (limited to 'README')
-rw-r--r-- | README | 57 |
1 files changed, 57 insertions, 0 deletions
@@ -0,0 +1,57 @@ + +tagit - the BSFS frontend +========================= + + +### Developer tools setup + +#### Test coverage (coverage) + +Resources: +* https://coverage.readthedocs.io/en/6.5.0/index.html +* https://nedbatchelder.com/blog/200710/flaws_in_coverage_measurement.html + +Commands: +$ pip install coverage +$ coverage run ; coverage html ; xdg-open .htmlcov/index.html + + + +#### Static code analysis (pylint) + +Resources: +* https://github.com/PyCQA/pylint +* https://pylint.org/ +* https://pylint.pycqa.org/en/latest/user_guide/messages/messages_overview.html#messages-overview + +Commands: +$ pip install pylint +$ pylint tagit + + + +#### Type analysis (mypy) + +Resources: +* https://github.com/python/mypy +* https://mypy.readthedocs.io/en/stable/ + +Commands: +$ pip install mypy +$ mypy + + + +#### Documentation (sphinx) + +Resources: +* +* + +Commands: +$ pip install ... +$ + + + + |