faizan
fix: resolve all 468 ruff linting errors (code quality enforcement complete)
e77a25a
raw
history blame contribute delete
306 Bytes
# 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"]