Skip to content

Commit

Permalink
chore: remove unnecesary rules and add description
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanttV committed Feb 27, 2025
1 parent 0263ec2 commit 75ad00e
Showing 1 changed file with 12 additions and 16 deletions.
28 changes: 12 additions & 16 deletions ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,16 @@
# D: pydocstyle
select = ["D"]
ignore = [
"D101",
"D200",
"D203",
"D212",
"D215",
"D404",
"D405",
"D406",
"D407",
"D408",
"D409",
"D410",
"D411",
"D412",
"D413",
"D414",
"D101", # Missing docstring in public class
"D200", # One-line docstring should fit on one line
"D212", # Multi-line docstring summary should start at the first line
"D405", # Section name should be properly capitalized
"D410", # Missing blank line after section
"D411", # Missing blank line before section
"D412", # No blank lines allowed between a section header and its content
"D414", # Section has no content
]

[lint.pydocstyle]
# Use Google-style docstrings.
convention = "google"

0 comments on commit 75ad00e

Please sign in to comment.