Spaces:
Sleeping
Sleeping
| # Ruff configuration for MNIST project | |
| select = ["E", "F", "W"] | |
| ignore = [] | |
| # Line length | |
| line-length = 88 | |
| [per-file-ignores] | |
| # Ignore E402 (module level import not at top) for scripts that modify sys.path | |
| "scripts/test_*.py" = ["E402"] | |
| "scripts/train_*.py" = ["E402"] | |
| "scripts/inference.py" = ["E402"] | |