Spaces:
Running
on
Zero
Running
on
Zero
File size: 369 Bytes
067283f |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# Disable all rules by default
lint.ignore = ["ALL"]
# Enable specific rules
lint.select = [
"S307", # suspicious-eval-usage
# 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",
]
exclude = ["*.ipynb"]
|