Skip to content

Fix formatting issues reported by the latest Ruff version #616

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 6, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
CI: Pin Ruff to a specific version for code format checks
That prevents constantly reformatting code to fit the changes introduced
by new Ruff versions.
  • Loading branch information
ccordoba12 committed Feb 6, 2025
commit ff6ddda5662b9529493251ad61647c37dc56a9b2
2 changes: 1 addition & 1 deletion .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# This error cannot be resolved by adding a pylint: disable=unused-argument comment ...
- run: |
pip install -e .[pylint,pycodestyle]
pip install ruff
pip install ruff==0.9.4
- name: ruff linter and code style checks
run: ruff check pylsp test
- name: ruff code formatter check
Expand Down