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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
def fetch_profile(client, user_id):
    return {"id": user_id}


def build_summary(profile):
    return str(profile["id"])


def render_report(user_ids, client):
    report = []
    for user_id in user_ids:
        profile = fetch_profile(client, user_id)
        report.append(build_summary(profile))
    return report