# Ruff config for the Siftlode backend. Keeps ruff's default rule set (E4/E7/E9 + F = the # high-signal pyflakes/pycodestyle checks that catch real dead code + bugs), but ignores E402: # a handful of modules (e.g. main.py) deliberately run setup — logging config, sys.path — before # importing route modules, so "module import not at top of file" is intentional there, not cruft. [lint] ignore = ["E402"]