Skip to content

Commit

Permalink
Temporarily ignore new ruff error
Browse files Browse the repository at this point in the history
  • Loading branch information
egparedes committed Jan 9, 2025
1 parent 303896f commit 91f608b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,8 @@ docstring-code-format = true
# NPY: NumPy-specific rules
# RUF: Ruff-specific rules
ignore = [
'E501' # [line-too-long]
'E501', # [line-too-long]
'B905' # [zip-without-explicit-strict] # TODO(egparedes): Reevaluate this rule
]
select = ['E', 'F', 'I', 'B', 'A', 'T10', 'ERA', 'NPY', 'RUF']
typing-modules = ['gt4py.eve.extended_typing']
Expand Down

0 comments on commit 91f608b

Please sign in to comment.