2024-12-10 11:04:23 +08:00
|
|
|
# Disable all rules by default
|
|
|
|
lint.ignore = ["ALL"]
|
|
|
|
|
|
|
|
# Enable specific rules
|
|
|
|
lint.select = [
|
|
|
|
"S307", # suspicious-eval-usage
|
|
|
|
"F401", # unused-import
|
2024-12-13 06:59:16 +08:00
|
|
|
"F841", # unused-local-variable
|
2024-12-13 08:24:41 +08:00
|
|
|
"F821", # undefined-name
|
2024-12-10 11:04:23 +08:00
|
|
|
]
|