Skip to content
Closed
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v6
- uses: astral-sh/ruff-action@v3
with:
args: "check --select=E,F,PLC,PLE,UP,W,YTT --ignore=E721,PLC0206,PLC0415,PLC1901,S101,UP031 --target-version=py39"
args: "check --select=E,F,PLC,PLE,UP,W,YTT --ignore=E721,F507,PLC0206,PLC0415,PLC1901,S101,UP031 --target-version=py39"
Copy link
Copy Markdown
Contributor

@cclauss cclauss Apr 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's not ignore this rule in ALL files.

Please put # noqa: F507 at the end of the offending line of code.

Or better yet, use the solution done in:

- run: ruff format --check --diff

lint-js:
Expand Down
Loading