""" Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. SPDX-License-Identifier: MIT-0 """ import logging import cfnlint.conditions import cfnlint.helpers import cfnlint.rules from cfnlint.decode.node import TemplateAttributeError, dict_node from cfnlint.decorators.refactored import refactored from cfnlint.graph import Graph from cfnlint.helpers import PSEUDOPARAMS from cfnlint.rules import CloudFormationLintRule as _CloudFormationLintRule from cfnlint.rules import Match as _Match from cfnlint.rules import ParseError as _ParseError from cfnlint.rules import RuleError as _RuleError from cfnlint.rules import RuleMatch as _RuleMatch from cfnlint.rules import RulesCollection as _RulesCollection from cfnlint.rules import TransformError as _TransformError from cfnlint.runner import Runner as _Runner from cfnlint.template import Template as _Template from cfnlint.transform import Transform LOGGER = logging.getLogger(__name__) @refactored( "RuleMatch is refactored and deprecated. Please use cfnlint.rules.RuleMatch" ) class RuleMatch(_RuleMatch): """Refactored class RuleMatch""" @refactored("Match is refactored and deprecated. Please use cfnlint.rules.Match") class Match(_Match): """Refactored class Match""" @refactored( "RulesCollection is refactored and deprecated. Please use cfnlint.rules.RulesCollection" ) class RulesCollection(_RulesCollection): """Refactored class Rules Collection""" @refactored( "CloudFormationLintRule is refactored and deprecated. Please use cfnlint.rules.CloudFormationLintRule" ) class CloudFormationLintRule(_CloudFormationLintRule): """Refactored class Rules CloudFormationLintRule""" @refactored( "ParseError is refactored and deprecated. Please use cfnlint.rules.ParseError" ) class ParseError(_ParseError): """Refactored class Rules ParseError""" @refactored( "TransformError is refactored and deprecated. Please use cfnlint.rules.TransformError" ) class TransformError(_TransformError): """Refactored class Rules TransformError""" @refactored( "RuleError is refactored and deprecated. Please use cfnlint.rules.RuleError" ) class RuleError(_RuleError): """Refactored class Rules RuleError""" @refactored( "Template is refactored and deprecated. Please use Template in cfnlint.template" ) class Template(_Template): """Refactored class Template""" @refactored("Runner is refactored and deprecated. Please use Runner in cfnlint.runner") class Runner(_Runner): """Refactored class Runner"""
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
conditions | Folder | 0755 |
|
|
data | Folder | 0755 |
|
|
decode | Folder | 0755 |
|
|
decorators | Folder | 0755 |
|
|
formatters | Folder | 0755 |
|
|
rules | Folder | 0755 |
|
|
template | Folder | 0755 |
|
|
__init__.py | File | 2.47 KB | 0644 |
|
__main__.py | File | 1.78 KB | 0644 |
|
api.py | File | 1.59 KB | 0644 |
|
config.py | File | 26.56 KB | 0644 |
|
core.py | File | 11.02 KB | 0644 |
|
exceptions.py | File | 592 B | 0644 |
|
graph.py | File | 10.85 KB | 0644 |
|
helpers.py | File | 21.95 KB | 0644 |
|
languageExtensions.py | File | 1.98 KB | 0644 |
|
maintenance.py | File | 18.87 KB | 0644 |
|
runner.py | File | 3.93 KB | 0644 |
|
transform.py | File | 8.48 KB | 0644 |
|
version.py | File | 130 B | 0644 |
|