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 2c38c02 commit 514463bCopy full SHA for 514463b
pyproject.toml
@@ -83,11 +83,13 @@ ignore_missing_imports = true
83
84
85
[tool.ruff]
86
+target-version = "py38"
87
88
# ruff is less lenient than pylint and does not make any exceptions
89
# (for docstrings, strings and comments in particular).
90
line-length = 110
91
92
+[tool.ruff.lint]
93
select = [
94
"E", # pycodestyle
95
"F", # pyflakes
@@ -112,8 +114,7 @@ fixable = [
112
114
"RUF", # ruff
113
115
]
116
unfixable = ["RUF001"]
-target-version = "py38"
117
-[tool.ruff.per-file-ignores]
118
+[tool.ruff.lint.per-file-ignores]
119
# Ruff is autofixing a tests with a voluntarily sneaky unicode
120
"tests/test_regrtest.py" = ["RUF001"]
0 commit comments