]>
crepu.dev Git - config.git/blob - djavu-asus/elpy/rpc-venv/lib/python3.11/site-packages/flake8/violation.py
1 """Contains the Violation error class used internally."""
2 from __future__
import annotations
7 from typing
import Match
8 from typing
import NamedTuple
10 from flake8
import defaults
11 from flake8
import utils
14 LOG
= logging
.getLogger(__name__
)
17 @functools.lru_cache(maxsize
=512)
18 def _find_noqa(physical_line
: str) -> Match
[str] |
None:
19 return defaults
.NOQA_INLINE_REGEXP
.search(physical_line
)
22 class Violation(NamedTuple
):
23 """Class representing a violation reported by Flake8."""
30 physical_line
: str |
None
32 def is_inline_ignored(self
, disable_noqa
: bool) -> bool:
33 """Determine if a comment has been added to ignore this line.
36 Whether or not users have provided ``--disable-noqa``.
38 True if error is ignored in-line, False otherwise.
40 physical_line
= self
.physical_line
41 # TODO(sigmavirus24): Determine how to handle stdin with linecache
45 if physical_line
is None:
46 physical_line
= linecache
.getline(self
.filename
, self
.line_number
)
47 noqa_match
= _find_noqa(physical_line
)
48 if noqa_match
is None:
49 LOG
.debug("%r is not inline ignored", self
)
52 codes_str
= noqa_match
.groupdict()["codes"]
54 LOG
.debug("%r is ignored by a blanket ``# noqa``", self
)
57 codes
= set(utils
.parse_comma_separated_list(codes_str
))
58 if self
.code
in codes
or self
.code
.startswith(tuple(codes
)):
60 "%r is ignored specifically inline with ``# noqa: %s``",
67 "%r is not ignored inline with ``# noqa: %s``", self
, codes_str