File size: 640 Bytes
b40c49c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | """
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
import regex as re
from cfnlint.formatters.base import BaseFormatter
class ParseableFormatter(BaseFormatter):
"""Parseable Formatter"""
def _format(self, match):
"""Format output"""
formatstr = "{0}:{1}:{2}:{3}:{4}:{5}:{6}"
return formatstr.format(
match.filename,
match.linenumber,
match.columnnumber,
match.linenumberend,
match.columnnumberend,
match.rule.id,
re.sub(r"(\r*\n)+", " ", match.message),
)
|