We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6db4a92 commit 34abe1dCopy full SHA for 34abe1d
1 file changed
pyproject.toml
@@ -6,21 +6,24 @@ profile = "black"
6
7
[tool.ruff]
8
line-length = 120
9
-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
-lint.select = ["E", "F", "D", "I"]
16
exclude = [
17
".venv",
18
"__pypackages__",
19
"build",
20
"dist",
21
"venv",
22
- "tests",
+ # "tests",
23
]
24
+[tool.ruff.lint]
+ignore = [
+ "E501", # line-too-long
+ "D100", # Missing docstring in public module
+ "D105", # undocumented-magic-method
+ ]
+# On top of the defaults (E, F), enable pydocstyle (D) and isort (I).
25
+select = ["E", "F", "D", "I"]
26
+
27
28
[tool.ruff.lint.pydocstyle]
29
convention = "numpy"
0 commit comments