Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update
Browse files- pyproject.toml +7 -2
pyproject.toml
CHANGED
@@ -26,8 +26,7 @@ ignore = [
|
|
26 |
"D213", # multi-line-summary-second-line
|
27 |
"E501", # line-too-long
|
28 |
"SIM117", # multiple-with-statements
|
29 |
-
|
30 |
-
extend-ignore = [
|
31 |
"D100", # undocumented-public-module
|
32 |
"D101", # undocumented-public-class
|
33 |
"D102", # undocumented-public-method
|
@@ -48,5 +47,11 @@ unfixable = [
|
|
48 |
"F401", # unused-import
|
49 |
]
|
50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
[tool.ruff.format]
|
52 |
docstring-code-format = true
|
|
|
26 |
"D213", # multi-line-summary-second-line
|
27 |
"E501", # line-too-long
|
28 |
"SIM117", # multiple-with-statements
|
29 |
+
#
|
|
|
30 |
"D100", # undocumented-public-module
|
31 |
"D101", # undocumented-public-class
|
32 |
"D102", # undocumented-public-method
|
|
|
47 |
"F401", # unused-import
|
48 |
]
|
49 |
|
50 |
+
[tool.ruff.lint.pydocstyle]
|
51 |
+
convention = "google"
|
52 |
+
|
53 |
+
[tool.ruff.lint.per-file-ignores]
|
54 |
+
"*.ipynb" = ["T201", "T203"]
|
55 |
+
|
56 |
[tool.ruff.format]
|
57 |
docstring-code-format = true
|