deslop 0.2.0

A static analyzer that spots low-context and AI-assisted code patterns across naming, concurrency, security, performance, and test quality.
Documentation
# configuration marker


def load_snapshot(path, logger):
    try:
        with open(path) as handle:
            return handle.read()
    except FileNotFoundError:
        logger.warning("missing snapshot")
        return "{}"


def parse_expression(value):
    return value.strip()


def main(payload):
    print(payload)
    return payload