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
import requests
import time


async def fetch_data(url: str, parts: list[str]) -> str:
    result = ""
    for part in parts:
        result += part

    try:
        risky_call()
    except Exception:
        pass

    print("debug", url)
    response = requests.get(url)
    time.sleep(1)
    payload = open("data.txt").read()
    value = eval("1 + 1")
    return result + response.text + payload + str(value)