We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2aba583 commit 95e827eCopy full SHA for 95e827e
1 file changed
pyproject.toml
@@ -6,13 +6,13 @@ profile = "black"
6
7
[tool.ruff]
8
line-length = 120
9
-ignore = [
+lint.ignore = [
10
"E501", # line-too-long
11
"D100", # Missing docstring in public module
12
"D105", # undocumented-magic-method
13
]
14
# On top of the defaults (E, F), enable pydocstyle (D) and isort (I).
15
-select = ["E", "F", "D", "I"]
+lint.select = ["E", "F", "D", "I"]
16
exclude = [
17
".venv",
18
"__pypackages__",
@@ -22,5 +22,5 @@ exclude = [
22
"tests",
23
24
25
-[tool.ruff.pydocstyle]
+[tool.ruff.lint.pydocstyle]
26
convention = "numpy"
0 commit comments