Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ruff Python linter and suppress reported issues
* [Ruff: a fast Python linter](https://lwn.net/Articles/930487/) * [Ruff: The First 200 Releases](https://notes.crmarsh.com/ruff-the-first-200-releases) Even though ruff is not as good a linter as Pylint, it is still quite good and is _much_ faster: ``` $ time pylint ods_ci real 0m10.980s, user 0m10.745s, sys 0m0.179s $ time ruff ods_ci real 0m0.023s, user 0m0.040s, sys 0m0.017s ``` Signed-off-by: Jiri Daněk <[email protected]>
- Loading branch information