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 f7330d9 commit 4d11b3eCopy full SHA for 4d11b3e
pyproject.toml
@@ -148,6 +148,8 @@ junit_family = "xunit2"
148
149
[tool.ruff]
150
line-length = 99
151
+
152
+[tool.ruff.lint]
153
extend-select = [
154
"F",
155
"E",
@@ -173,12 +175,13 @@ extend-select = [
173
175
]
174
176
extend-ignore = [
177
"S311", # We are not using random for cryptographic purposes
178
+ "ISC001",
179
180
-[tool.ruff.flake8-quotes]
181
+[tool.ruff.lint.flake8-quotes]
182
inline-quotes = "single"
183
-[tool.ruff.extend-per-file-ignores]
184
+[tool.ruff.lint.extend-per-file-ignores]
185
"*/test_*.py" = ["S101"]
186
"fmriprep/utils/debug.py" = ["A002", "T100"]
187
"docs/conf.py" = ["A001"]
0 commit comments