X7ROOT File Manager
Current Path:
/opt/cloudlinux/venv/lib/python3.11/site-packages/pylint/checkers
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
pylint
/
checkers
/
ðŸ“
..
📄
__init__.py
(4.26 KB)
ðŸ“
__pycache__
📄
async.py
(3.83 KB)
📄
bad_chained_comparison.py
(2.18 KB)
ðŸ“
base
📄
base_checker.py
(10.67 KB)
ðŸ“
classes
📄
deprecated.py
(9.43 KB)
📄
design_analysis.py
(21.62 KB)
📄
dunder_methods.py
(3.43 KB)
📄
ellipsis_checker.py
(1.97 KB)
📄
exceptions.py
(26.05 KB)
📄
format.py
(26.91 KB)
📄
imports.py
(41.31 KB)
📄
lambda_expressions.py
(3.38 KB)
📄
logging.py
(15.84 KB)
📄
mapreduce_checker.py
(1.08 KB)
📄
method_args.py
(4.68 KB)
📄
misc.py
(4.87 KB)
📄
modified_iterating_checker.py
(7.67 KB)
📄
nested_min_max.py
(3.63 KB)
📄
newstyle.py
(4.46 KB)
📄
non_ascii_names.py
(6.98 KB)
📄
raw_metrics.py
(3.81 KB)
ðŸ“
refactoring
📄
similar.py
(33.29 KB)
📄
spelling.py
(16.17 KB)
📄
stdlib.py
(31.28 KB)
📄
strings.py
(40.28 KB)
📄
threading_checker.py
(1.9 KB)
📄
typecheck.py
(86.83 KB)
📄
unicode.py
(18.05 KB)
📄
unsupported_version.py
(2.93 KB)
📄
utils.py
(77.26 KB)
📄
variables.py
(126.57 KB)
Editing: misc.py
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/main/LICENSE # Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt """Check source code is ascii only or has an encoding declaration (PEP 263).""" from __future__ import annotations import re import tokenize from typing import TYPE_CHECKING from astroid import nodes from pylint.checkers import BaseRawFileChecker, BaseTokenChecker from pylint.typing import ManagedMessage if TYPE_CHECKING: from pylint.lint import PyLinter class ByIdManagedMessagesChecker(BaseRawFileChecker): """Checks for messages that are enabled or disabled by id instead of symbol.""" name = "miscellaneous" msgs = { "I0023": ( "%s", "use-symbolic-message-instead", "Used when a message is enabled or disabled by id.", ) } options = () def _clear_by_id_managed_msgs(self) -> None: self.linter._by_id_managed_msgs.clear() def _get_by_id_managed_msgs(self) -> list[ManagedMessage]: return self.linter._by_id_managed_msgs def process_module(self, node: nodes.Module) -> None: """Inspect the source file to find messages activated or deactivated by id.""" managed_msgs = self._get_by_id_managed_msgs() for mod_name, msgid, symbol, lineno, is_disabled in managed_msgs: if mod_name == node.name: verb = "disable" if is_disabled else "enable" txt = f"'{msgid}' is cryptic: use '# pylint: {verb}={symbol}' instead" self.add_message("use-symbolic-message-instead", line=lineno, args=txt) self._clear_by_id_managed_msgs() class EncodingChecker(BaseTokenChecker, BaseRawFileChecker): """BaseChecker for encoding issues. Checks for: * warning notes in the code like FIXME, XXX * encoding issues. """ # configuration section name name = "miscellaneous" msgs = { "W0511": ( "%s", "fixme", "Used when a warning note as FIXME or XXX is detected.", ) } options = ( ( "notes", { "type": "csv", "metavar": "<comma separated values>", "default": ("FIXME", "XXX", "TODO"), "help": ( "List of note tags to take in consideration, " "separated by a comma." ), }, ), ( "notes-rgx", { "type": "string", "metavar": "<regexp>", "help": "Regular expression of note tags to take in consideration.", "default": "", }, ), ) def open(self) -> None: super().open() notes = "|".join(re.escape(note) for note in self.linter.config.notes) if self.linter.config.notes_rgx: regex_string = rf"#\s*({notes}|{self.linter.config.notes_rgx})(?=(:|\s|\Z))" else: regex_string = rf"#\s*({notes})(?=(:|\s|\Z))" self._fixme_pattern = re.compile(regex_string, re.I) def _check_encoding( self, lineno: int, line: bytes, file_encoding: str ) -> str | None: try: return line.decode(file_encoding) except UnicodeDecodeError: pass except LookupError: if ( line.startswith(b"#") and "coding" in str(line) and file_encoding in str(line) ): msg = f"Cannot decode using encoding '{file_encoding}', bad encoding" self.add_message("syntax-error", line=lineno, args=msg) return None def process_module(self, node: nodes.Module) -> None: """Inspect the source file to find encoding problem.""" encoding = node.file_encoding if node.file_encoding else "ascii" with node.stream() as stream: for lineno, line in enumerate(stream): self._check_encoding(lineno + 1, line, encoding) def process_tokens(self, tokens: list[tokenize.TokenInfo]) -> None: """Inspect the source to find fixme problems.""" if not self.linter.config.notes: return for token_info in tokens: if token_info.type != tokenize.COMMENT: continue comment_text = token_info.string[1:].lstrip() # trim '#' and white-spaces if self._fixme_pattern.search("#" + comment_text.lower()): self.add_message( "fixme", col_offset=token_info.start[1] + 1, args=comment_text, line=token_info.start[0], ) def register(linter: PyLinter) -> None: linter.register_checker(EncodingChecker(linter)) linter.register_checker(ByIdManagedMessagesChecker(linter))
Upload File
Create Folder