You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i assume this is an unintentional bug in the logic that allows you to add additional information to noqa comments:
# noqa: D103 this function is self-documenting
but ruff should enforce a space between the code and any additional comments. currently it doesn't seem to do so. it also seems to allow certain completely invalid codes:
# no error even though these aren't valid codes:deffoo(): ... # noqa: D103a# noqa: Z
interestingly, these are treated as two separate codes:
deffoo(): ... # noqa: D103F811
i think it should instead be an error and force the user to separate them with a comma like this: