8000 ruff config · code4mk/fastapi-template@829b13a · GitHub
[go: up one dir, main page]

Skip to content

Commit 829b13a

Browse files
committed
ruff config
1 parent 774808a commit 829b13a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

ruff.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ ignore = [
4343
"D203", # 1 blank line required before class docstring
4444
"D212", # Multi-line docstring summary should start at the first line
4545
"D100", # Missing docstring in public module
46-
"PLR0913", # Too many arguments to function call,
47-
"I001",
48-
"TC002",
49-
"ARG002",
50-
"TD002",
51-
"TD003",
52-
"FIX002",
53-
"COM812"
46+
"PLR0913", # Too many arguments to function call
47+
"I001", # Unsorted imports
48+
"TC002", # Move third-party imports to a separate group
49+
"ARG002", # Unused method argument
50+
"TD002", # Missing author in TODO
51+
"TD003", # Missing issue link in TODO
52+
"FIX002", # Line contains TODO, consider resolving the issue
53+
"COM812" # Missing trailing comma in Python 3.6+
5454
]
5555

5656
# Allow unused variables when underscore-prefixed

0 commit comments

Comments
 (0)
0