We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44e46d3 commit 3ddad55Copy full SHA for 3ddad55
pyproject.toml
@@ -100,8 +100,13 @@ ignore = [
100
"RUF015",
101
# Use `X | Y` in `isinstance` (see https://github.com/home-assistant/core/issues/123850)
102
"UP038",
103
+ # Pattern passed to `match=` contains metacharacters but is neither escaped nor raw
104
+ "RUF043",
105
"RUF046", # Value being cast to `int` is already an integer
106
107
+ # TODO: Move this ignore so that it only applies in the tests folder. Do in conjunction with any doc related rules
108
+ "RUF059", # Unpacked variable `coords` is never used
109
+
110
# TODO: ignore for now (requires more work). Remove ignore once fixed
111
# Missing docstring in public module
112
"D100",
0 commit comments