diff --git a/pyproject.toml b/pyproject.toml index d6d6db9e..abf40be6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -112,6 +112,39 @@ ignore = [ 'TD003', # Allow TODO without issue link 'TID252', # Allow relative imports 'TRY003', # Specific messages for common exception classes + + # TODO these still need to be checked (i.e. ignored or fixed) + 'ARG001', + 'ARG003', + 'ARG005', + 'B018', + 'C901', + 'FBT003', + 'FIX002', + 'G002', + 'G004', + 'NPY002', + 'PLR0911', + 'PLR0912', + 'PLR0915', + 'PLR2004', + 'PLW2901', + 'RET503', + 'RUF005', + 'RUF012', + 'S103', + 'S108', + 'S310', + 'S602', + 'S603', + 'S604', + 'S607', + 'SIM102', + 'SIM105', + 'SIM115', + 'TRY301', + 'TRY400', + 'UP031', ] [tool.ruff.lint.per-file-ignores]