Skip to content
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

style: add ruff 'ARG' lint group #1525

Merged
merged 2 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion devtasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
local["poetry"]("install")


def lint(recycle_container=False):
def lint(_recycle_container=False):

Check warning on line 45 in devtasks.py

View check run for this annotation

Codecov / codecov/patch

devtasks.py#L45

Added line #L45 was not covered by tests
danieleades marked this conversation as resolved.
Show resolved Hide resolved
"""Lint and format the project."""
args = [
"--extra-experimental-features",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ style = "pep440"
vcs = "git"

[tool.ruff.lint]
extend-select = ["B", "D", "E", "F", "FA", "I", "PGH", "UP"]
extend-select = ["ARG", "B", "D", "E", "F", "FA", "I", "PGH", "UP"]
extend-ignore = ['B028', "B904", "D105", "D107", "E501"]

[tool.ruff.lint.per-file-ignores]
Expand Down
Loading