flakeheaven.formatters._baseline

class flakeheaven.formatters._baseline.BaseLineFormatter(options: argparse.Namespace)[source]

Bases: flake8.formatting.base.BaseFormatter

Initialize with the options parsed from config and cli.

This also calls a hook, after_init(), so subclasses do not need to call super to call this method.

Parameters

options (argparse.Namespace) – User specified configuration parsed from both configuration files and the command-line interface.

format(error)[source]

Format an error reported by Flake8.

This method must be implemented by subclasses.

Parameters

error (flake8.style_guide.Violation) – This will be an instance of Violation.

Returns

The formatted error string.

Return type

str