fix-py-line-too-long — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited fix-py-line-too-long (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Break into multiple lines using parentheses or brackets:
result = some_very_long_function_name(
parameter1, parameter2, parameter3
)Use string concatenation: "ABC" → ("A" "B" "C")
message = ("This is a very long string "
"that needs to be broken up")Add # noqa: E501 AFTER the ending """. NEVER add it inside the docstring.
def example_function():
"""This is a very long docstring that exceeds the line length limit.""" # noqa: E501
pass# noqa: E501 inside docstrings or multi-line strings~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.