-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
suppressionRelated to supression of violations e.g. noqaRelated to supression of violations e.g. noqa
Description
With the following snippet, I can ignore the issue in 3 ways, but the 4th fails to ignore, and it's not consistant:
- Add
# noqa: N815on the line ✔️ - Add
# noqa: mixed-case-variable-in-class-scopeon the line ✔️ - Add
# ruff: noqa: N815on the first line of the file ✔️ - Add
# ruff: noqa: mixed-case-variable-in-class-scopeon the first line of the file 🛑
from typing import TypedDict
class Request(TypedDict):
queryString: str -> Variable `queryString` in class scope should not be mixedCaseRuff(N815)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
suppressionRelated to supression of violations e.g. noqaRelated to supression of violations e.g. noqa