diff --git a/ruff.toml b/ruff.toml index 8283808..238fc52 100644 --- a/ruff.toml +++ b/ruff.toml @@ -47,18 +47,6 @@ ignore = [ "PLR2004", # Magic number ] -# TODO : fix these and stop ignoring. Commented out ones are common and OK to except. -extend-ignore = [ - "PGH004", # Use specific rule codes when using `noqa` -# "C401", # Unnecessary generator (rewrite as a `set` comprehension) -# "C402", # Unnecessary generator (rewrite as a dict comprehension) -# "C405", # Unnecessary `list` literal (rewrite as a `set` literal) -# "C408", # Unnecessary `dict` call (rewrite as a literal) -# "C416", # Unnecessary `dict` comprehension (rewrite using `dict()`) -# "PGH002", # warn is deprecated in favor of warning -# "PYI056", # Calling `.append()` on `__all__` may not be supported by all type checkers -] - extend-exclude = [ "docs", ]