Ruff is a new blazing-fast Python linter written in Rust. Since I like to have my linter integrated with my IDE this is a big deal. I was just recently noticing that Pylint burns quite a lot of CPU power while I'm editing code.
Replace Pylint with Ruff as the main linter for this repository. It's probably still useful in the near term to continue running pylint in GitHub Actions since Ruff hasn't implemented many Pylint rules; see https://github.com/charliermarsh/ruff/issues/970 for details on the status of that.
Ruff is a new blazing-fast Python linter written in Rust. Since I like to have my linter integrated with my IDE this is a big deal. I was just recently noticing that Pylint burns quite a lot of CPU power while I'm editing code.
Replace Pylint with Ruff as the main linter for this repository. It's probably still useful in the near term to continue running
pylint
in GitHub Actions since Ruff hasn't implemented many Pylint rules; see https://github.com/charliermarsh/ruff/issues/970 for details on the status of that.