hysts HF Staff commited on
Commit
52cc611
·
1 Parent(s): 318f25d
Files changed (1) hide show
  1. 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