Skip to content

Commit

Permalink
relax some rules
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Aug 7, 2024
1 parent 67d3ee9 commit 636cc1f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion ruff.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
line-length = 79
line-length = 100

lint.select = ["ALL"]

lint.ignore = [
"ANN", # type annotation
"D107", # Missing docstring in `__init__`
"D100", # Missing docstring in public module
"D101", # Missing docstring in public class
"D102", # Missing docstring in public method
"D203", # 1 blank line required before class docstring
"D205", # 1 blank line required between summary line and description
"D213", # incompatible. Ignoring `multi-line-summary-second-line`
"FIX002", # Line contains TODO, consider resolving the issue
"TD002", # Missing author in TODO
"TD003", # Missing issue link on the line following this TODO
"TRY003", # Avoid specifying long messages outside the exception class
]

Expand Down

0 comments on commit 636cc1f

Please sign in to comment.