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/vscode.py

import os
import re

from prospector.formatters.base import Formatter


class VSCodeFormatter(Formatter):

    """
    This formatter outputs messages in the same way as vscode prospector linter expects.
    """

    def render(self, summary=True, messages=True, profile=False):
        # this formatter will always ignore the summary and profile
        cur_loc = None
        output = []

        for message in sorted(self.messages):
            if cur_loc != message.location.path:
                cur_loc = message.location.path
                module_name = self._make_path(message.location.path).replace(os.path.sep, ".")
                module_name = re.sub(r"(\.__init__)?\.py$", "", module_name)

                header = "************* Module %s" % module_name
                output.append(header)

            template = "%(line)s,%(character)s,%(code)s,%(code)s:%(source)s %(message)s"
            output.append(
                template
                % {
                    "line": message.location.line,
                    "character": message.location.character,
                    "source": message.source,
                    "code": message.code,
                    "message": message.message.strip(),
                }
            )

        return "\n".join(output)

SILENT KILLER Tool