2024-12-10 03:04:23 +00:00
|
|
|
# Disable all rules by default
|
|
|
|
lint.ignore = ["ALL"]
|
|
|
|
|
|
|
|
# Enable specific rules
|
|
|
|
lint.select = [
|
|
|
|
"S307", # suspicious-eval-usage
|
2024-12-20 21:24:55 +00:00
|
|
|
"T201", # print-usage
|
2024-12-31 08:16:37 +00:00
|
|
|
"W291",
|
2024-12-30 09:14:59 +00:00
|
|
|
"W292",
|
2024-12-28 10:22:21 +00:00
|
|
|
"W293",
|
2024-12-13 00:29:37 +00:00
|
|
|
# The "F" series in Ruff stands for "Pyflakes" rules, which catch various Python syntax errors and undefined names.
|
|
|
|
# See all rules here: https://docs.astral.sh/ruff/rules/#pyflakes-f
|
|
|
|
"F",
|
2024-12-20 21:24:55 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
exclude = ["*.ipynb"]
|