Skip to content

Commit dd9e82b

Browse files
authored
Merge pull request #650 from opsmill/pog-resolved-rules
Remove resolved rule ignores
2 parents f5ed365 + ea97f40 commit dd9e82b

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

pyproject.toml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ ignore = [
157157
"DOC", # pydoclint
158158
"CPY", # flake8-copyright
159159
"T201", # use of `print`
160-
"ISC", # flake8-implicit-str-concat
161160
"COM812", # missing-trailing-comma
162161

163162
##################################################################################################
@@ -211,7 +210,6 @@ ignore = [
211210
"SIM108", # Use ternary operator `key_str = f"{value[ALIAS_KEY]}: {key}" if ALIAS_KEY in value and value[ALIAS_KEY] else key` instead of `if`-`else`-block
212211
"SIM110", # Use `return any(getattr(item, resource_field) == resource_id for item in getattr(self, RESOURCE_MAP[resource_type]))` instead of `for` loop
213212
"SIM114", # Combine `if` branches using logical `or` operator
214-
"SIM117", # Use a single `with` statement with multiple contexts instead of nested `with` statements
215213
"TC003", # Move standard library import `collections.abc.Iterable` into a type-checking block
216214
"UP031", # Use format specifiers instead of percent format
217215
"UP045", # Use `X | None` for type annotations
@@ -285,14 +283,6 @@ max-complexity = 17
285283
"RET504", # Unnecessary assignment to `data` before `return` statement
286284
]
287285

288-
"tests/unit/sdk/test_client.py" = [
289-
"W293", # Blank line contains whitespace (used within output check)
290-
]
291-
292-
"tests/fixtures/unit/test_graphql_plugin/*.py" = [
293-
"FA100", # Add `from __future__ import annotations` to simplify `typing.Optional`
294-
]
295-
296286
"tasks.py" = [
297287
"PLC0415", # `import` should be at the top-level of a file
298288
]

0 commit comments

Comments
 (0)