Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d9e6b88

Browse filesBrowse files
committed
ignore some cases
1 parent b7a49eb commit d9e6b88
Copy full SHA for d9e6b88

File tree

1 file changed

+10
-1
lines changed
Filter options

1 file changed

+10
-1
lines changed

‎pyproject.toml

Copy file name to clipboardExpand all lines: pyproject.toml
+10-1
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,13 @@ line-length = 88
7777

7878
[tool.ruff.lint]
7979
select = ["F", "E", "W", "N", "B", "RUF", "TC"]
80-
ignore = []
80+
ignore = [
81+
"F403", # `from typing import *` used; unable to detect undefined names -> Would be good to fix this one and the next
82+
"F405", # X may be undefined, or defined from star imports
83+
"F841", # Local variable X is assigned to but never used"
84+
"E501", # Line too long
85+
"B007", # Loop control variable X not used within loop body
86+
"B028", # No explicit X keyword argument found
87+
"B905", # `zip()` without an explicit `strict=` parameter
88+
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
89+
]

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.