Replace pylint with ruff (#5987)

This commit is contained in:
Chenlei Hu
2024-12-09 19:04:23 -08:00
committed by GitHub
parent 23827ca312
commit a220d11e6b
4 changed files with 339 additions and 335 deletions

8
ruff.toml Normal file
View File

@@ -0,0 +1,8 @@
# Disable all rules by default
lint.ignore = ["ALL"]
# Enable specific rules
lint.select = [
"S307", # suspicious-eval-usage
"F401", # unused-import
]