Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > site-packages > pylint > checkers
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
base | Directory | - | - | |
classes | Directory | - | - | |
refactoring | Directory | - | - | |
__init__.py | File | 4367 bytes | April 17 2025 13:10:59. | |
async.py | File | 3923 bytes | April 17 2025 13:10:59. | |
bad_chained_comparison.py | File | 2228 bytes | April 17 2025 13:10:59. | |
base_checker.py | File | 10931 bytes | April 17 2025 13:10:59. | |
deprecated.py | File | 9661 bytes | April 17 2025 13:10:59. | |
design_analysis.py | File | 22139 bytes | April 17 2025 13:10:59. | |
dunder_methods.py | File | 3513 bytes | April 17 2025 13:10:59. | |
ellipsis_checker.py | File | 2014 bytes | April 17 2025 13:10:59. | |
exceptions.py | File | 26673 bytes | April 17 2025 13:10:59. | |
format.py | File | 27558 bytes | April 17 2025 13:10:59. | |
imports.py | File | 42302 bytes | April 17 2025 13:10:59. | |
lambda_expressions.py | File | 3462 bytes | April 17 2025 13:10:59. | |
logging.py | File | 16221 bytes | April 17 2025 13:10:59. | |
mapreduce_checker.py | File | 1111 bytes | April 17 2025 13:10:59. | |
method_args.py | File | 4790 bytes | April 17 2025 13:10:59. | |
misc.py | File | 4987 bytes | April 17 2025 13:10:59. | |
modified_iterating_checker.py | File | 7859 bytes | April 17 2025 13:10:59. | |
nested_min_max.py | File | 3720 bytes | April 17 2025 13:10:59. | |
newstyle.py | File | 4567 bytes | April 17 2025 13:10:59. | |
non_ascii_names.py | File | 7146 bytes | April 17 2025 13:10:59. | |
raw_metrics.py | File | 3900 bytes | April 17 2025 13:10:59. | |
similar.py | File | 34091 bytes | April 17 2025 13:10:59. | |
spelling.py | File | 16556 bytes | April 17 2025 13:10:59. | |
stdlib.py | File | 32028 bytes | April 17 2025 13:10:59. | |
strings.py | File | 41242 bytes | April 17 2025 13:10:59. | |
threading_checker.py | File | 1941 bytes | April 17 2025 13:10:59. | |
typecheck.py | File | 88917 bytes | April 17 2025 13:10:59. | |
unicode.py | File | 18480 bytes | April 17 2025 13:10:59. | |
unsupported_version.py | File | 2999 bytes | April 17 2025 13:10:59. | |
utils.py | File | 79111 bytes | April 17 2025 13:10:59. | |
variables.py | File | 129607 bytes | April 17 2025 13:10:59. |
# 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))
SILENT KILLER Tool