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 02135a6 commit 6fbe285Copy full SHA for 6fbe285
pyproject.toml
@@ -82,7 +82,7 @@ explicit_package_bases = true
82
mypy_path = ["python"]
83
84
[tool.ruff]
85
-target-version = "py38"
+target-version = "py311"
86
line-length = 88
87
select = [
88
"E", # pycodestyle errors
@@ -91,4 +91,4 @@ select = [
91
"I", # isort
92
"B", # flake8-bugbear
93
]
94
-ignore = ["E501"] # line length handled by black
+ignore = ["E501", "E203", "W503"] # line length handled by black
0 commit comments