Florian Best
Florian Best
We want to add missing annotations via a pre-commit hook (see #1178) but pre-commit is limited to pass either no filename or all filenames. While some files have a annotation...
It would be nice to have a pre-commit hook, which adds missing license information, where just the default license is taken either from a pre-commit argument (don't know how this...
`reuse annotate` should ignore/skip empty files like `__init__.py`.
Running the reuse-lint-file pre-commit hook for all 55345 files in our [repository](https://github.com/univention/univention-corporate-server/) takes more than 3 minutes. ``` $ time pre-commit run reuse-lint-file -a … real 3m26,169s user 19m37,665s sys...
Fixes: #28 Depends on #49 and #50
I didn't find any real specification of logfmt. But https://www.brandur.org/logfmt seems to be the origin. It defines the following valid format (and links back to this nice project): ``` info...
Hello, thank you very much for your project! I couldn't install it via pip, it seems not on PyPI? But I just installed it the following way via Docker: ```Dockerfile...
`com2ann -i` for the following: ``` """Test""" from __future__ import annotations import hashlib def hash_value(value): # type: (bytes) -> str return 'sha256:%s' % hashlib.sha256(value.lower()).hexdigest() ``` will duplicate the `from __future__...
It seems in some cases coverage doesn't mark lines which are proven to be run in an async function. I couldn't find a bug report for it yet. Deactivating branch...