File size: 28,781 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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 | """
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from __future__ import annotations
import argparse
import copy
import glob
import json
import logging
import os
import sys
from pathlib import Path
from typing import Any, Dict, Sequence, TypedDict
from typing_extensions import Unpack
import cfnlint.decode.cfn_yaml
from cfnlint.helpers import REGIONS, format_json_string
from cfnlint.jsonschema import StandardValidator
from cfnlint.version import __version__
# pylint: disable=too-many-public-methods
LOGGER = logging.getLogger("cfnlint")
_DEFAULT_RULESDIR = os.path.join(os.path.dirname(__file__), "rules")
def configure_logging(debug_logging, info_logging):
ch = logging.StreamHandler()
if debug_logging:
LOGGER.setLevel(logging.DEBUG)
elif info_logging:
LOGGER.setLevel(logging.INFO)
else:
LOGGER.setLevel(logging.WARNING)
log_formatter = logging.Formatter(
"%(asctime)s - %(name)s - %(levelname)s - %(message)s"
)
ch.setFormatter(log_formatter)
# make sure all other log handlers are removed before adding it back
for handler in LOGGER.handlers:
LOGGER.removeHandler(handler)
LOGGER.addHandler(ch)
class ConfigFileArgs:
"""
Config File arguments.
Parses .cfnlintrc OR .cfnlintrc.yaml OR .cfnlintrc.yml
in the Home and Project folder.
"""
file_args: Dict = {}
_user_config_file = None
_project_config_file = None
_custom_config_file = None
def __init__(self, schema=None, config_file=None):
# self.file_args = self.get_config_file_defaults()
self.file_args = {}
self.default_schema_file = Path(__file__).parent.joinpath(
"data/CfnLintCli/config/schema.json"
)
with self.default_schema_file.open(encoding="utf-8") as f:
self.default_schema = json.load(f)
self.schema = self.default_schema if not schema else schema
if config_file:
self._custom_config_file = config_file
else:
LOGGER.debug("Looking for CFLINTRC before attempting to load")
self._user_config_file, self._project_config_file = self._find_config()
self.load()
def _find_config(self):
"""Looks up for user and project level config
Returns
-------
Tuple
(Path, Path)
Tuple with both configs and whether they were found
Example
-------
> user_config, project_config = self._find_config()
"""
config_file_name = ".cfnlintrc"
user_config_path = ""
home_path = Path.home()
for path in [
home_path.joinpath(config_file_name),
home_path.joinpath(f"{config_file_name}.yaml"),
home_path.joinpath(f"{config_file_name}.yml"),
]:
if self._has_file(path):
user_config_path = path
break
project_config_path = ""
cwd_path = Path.cwd()
for path in [
cwd_path.joinpath(config_file_name),
cwd_path.joinpath(f"{config_file_name}.yaml"),
cwd_path.joinpath(f"{config_file_name}.yml"),
]:
if self._has_file(path):
project_config_path = path
break
return user_config_path, project_config_path
def _has_file(self, filename):
"""Confirm whether file exists
Parameters
----------
filename : str
Path to a file
Returns
-------
Boolean
"""
return Path(filename).is_file()
def load(self):
"""Load configuration file and expose as a dictionary
Returns
-------
Dict
CFLINTRC configuration
"""
if self._custom_config_file:
custom_config = self._read_config(self._custom_config_file)
LOGGER.debug("Validating Custom CFNLINTRC")
self.validate_config(custom_config, self.schema)
LOGGER.debug("Custom configuration loaded as")
LOGGER.debug("%s", custom_config)
self.file_args = custom_config
else:
user_config = self._read_config(self._user_config_file)
LOGGER.debug("Validating User CFNLINTRC")
self.validate_config(user_config, self.schema)
project_config = self._read_config(self._project_config_file)
LOGGER.debug("Validating Project CFNLINTRC")
self.validate_config(project_config, self.schema)
LOGGER.debug("User configuration loaded as")
LOGGER.debug("%s", user_config)
LOGGER.debug("Project configuration loaded as")
LOGGER.debug("%s", project_config)
LOGGER.debug("Merging configurations...")
self.file_args = self.merge_config(user_config, project_config)
def validate_config(self, config, schema):
"""Validate configuration against schema
Parameters
----------
config : dict
CFNLINTRC configuration
schema : dict
JSONSchema to validate against
Raises
-------
jsonschema.exceptions.ValidationError
Returned when cfnlintrc doesn't match schema provided
"""
LOGGER.debug("Validating CFNLINTRC config with given JSONSchema")
LOGGER.debug("Schema used: %s", schema)
LOGGER.debug("Config used: %s", config)
validator = StandardValidator(schema=schema)
validator.validate(config)
LOGGER.debug("CFNLINTRC looks valid!")
def merge_config(self, user_config, project_config):
"""Merge project and user configuration into a single dictionary
Creates a new configuration with both configuration merged
it favours project level over user configuration if keys are duplicated
NOTE
----
It takes any number of nested dicts
It overrides lists found in user_config with project_config
Parameters
----------
user_config : Dict
User configuration (~/.cfnlintrc) found at user's home directory
project_config : Dict
Project configuration (.cfnlintrc) found at current directory
Returns
-------
Dict
Merged configuration
"""
# Recursively override User config with Project config
for key in user_config:
if key in project_config:
# If both keys are the same, let's check whether they have nested keys
if isinstance(user_config[key], dict) and isinstance(
project_config[key], dict
):
self.merge_config(user_config[key], project_config[key])
else:
user_config[key] = project_config[key]
LOGGER.debug(
"Overriding User's key %s with Project's specific value %s.",
key,
project_config[key],
)
# Project may have unique config we need to copy over too
# so that we can have user+project config available as one
for key in project_config:
if key not in user_config:
user_config[key] = project_config[key]
return user_config
def _read_config(self, config):
"""Parse given YAML configuration
Returns
-------
Dict
Parsed YAML configuration as dictionary
"""
config = Path(config)
config_template = None
if self._has_file(config):
LOGGER.debug("Parsing CFNLINTRC")
config_template = cfnlint.decode.cfn_yaml.load(str(config))
if not config_template:
config_template = {}
return config_template
def comma_separated_arg(string):
"""Split a comma separated string"""
return string.split(",")
def _ensure_value(namespace, name, value):
if getattr(namespace, name, None) is None:
setattr(namespace, name, value)
return getattr(namespace, name)
class RuleConfigurationAction(argparse.Action):
"""Override the default Action"""
def __init__(
self,
option_strings,
dest,
nargs=None,
const=None,
default=None,
type=None,
choices=None,
required=False,
help=None,
metavar=None,
): # pylint: disable=W0622
super().__init__(
option_strings=option_strings,
dest=dest,
nargs=nargs,
const=const,
default=default,
type=type,
choices=choices,
required=required,
help=help,
metavar=metavar,
)
def _parse_rule_configuration(self, string):
"""Parse the config rule structure"""
configs = comma_separated_arg(string)
results = {}
for config in configs:
rule_id = config.split(":")[0]
config_name = config.split(":")[1].split("=")[0]
config_value = config.split(":")[1].split("=")[1]
if rule_id not in results:
results[rule_id] = {}
results[rule_id][config_name] = config_value
return results
def __call__(self, parser, namespace, values, option_string=None):
items = copy.copy(_ensure_value(namespace, self.dest, {}))
try:
for value in values:
new_value = self._parse_rule_configuration(value)
for v_k, v_vs in new_value.items():
if v_k in items:
for s_k, s_v in v_vs.items():
items[v_k][s_k] = s_v
else:
items[v_k] = v_vs
setattr(namespace, self.dest, items)
except Exception: # pylint: disable=W0703
parser.print_help()
parser.exit()
class CliArgs:
"""Base Args class"""
def __init__(self, cli_args: Sequence[str] | None):
self.parser = self.create_parser()
self.cli_args = self.parser.parse_args(cli_args or [])
def create_parser(self):
"""Do first round of parsing parameters to set options"""
class ArgumentParser(argparse.ArgumentParser):
"""Override Argument Parser so we can control the exit code"""
def error(self, message):
self.print_help(sys.stderr)
self.exit(32, f"{self.prog}: error: {message}\n")
class ExtendAction(argparse.Action):
"""Support argument types that are lists and can
be specified multiple times.
"""
def __call__(self, parser, namespace, values, option_string=None):
items = getattr(namespace, self.dest)
items = [] if items is None else items
for value in values:
if isinstance(value, list):
items.extend(value)
else:
items.append(value)
setattr(namespace, self.dest, items)
usage = (
"\nBasic: cfn-lint test.yaml\n"
"Ignore a rule: cfn-lint -i E3012 -- test.yaml\n"
"Configure a rule: cfn-lint -x E3012:strict=true -t test.yaml\n"
"Lint all yaml files in a folder: cfn-lint dir/**/*.yaml"
)
parser = ArgumentParser(description="CloudFormation Linter", usage=usage)
parser.register("action", "extend", ExtendAction)
standard = parser.add_argument_group("Standard")
advanced = parser.add_argument_group("Advanced / Debugging")
# Allow the template to be passes as an optional or a positional argument
standard.add_argument(
"templates",
metavar="TEMPLATE",
nargs="*",
help="The CloudFormation template to be linted",
)
standard.add_argument(
"-t",
"--template",
metavar="TEMPLATE",
dest="template_alt",
help="The CloudFormation template to be linted",
nargs="+",
default=[],
action="extend",
)
standard.add_argument(
"-b",
"--ignore-bad-template",
help="Ignore failures with Bad template",
action="store_true",
)
standard.add_argument(
"--ignore-templates",
dest="ignore_templates",
help="Ignore templates",
nargs="+",
default=[],
action="extend",
)
advanced.add_argument(
"-D", "--debug", help="Enable debug logging", action="store_true"
)
advanced.add_argument(
"-I", "--info", help="Enable information logging", action="store_true"
)
standard.add_argument(
"-f",
"--format",
help="Output Format",
choices=["quiet", "parseable", "json", "junit", "pretty", "sarif"],
)
standard.add_argument(
"-l",
"--list-rules",
dest="listrules",
default=False,
action="store_true",
help="list all the rules",
)
standard.add_argument(
"-r",
"--regions",
dest="regions",
nargs="+",
default=[],
type=comma_separated_arg,
action="extend",
help="list the regions to validate against.",
)
advanced.add_argument(
"-a",
"--append-rules",
dest="append_rules",
nargs="+",
default=[],
type=comma_separated_arg,
action="extend",
help=(
"specify one or more rules directories using "
"one or more --append-rules arguments. "
),
)
standard.add_argument(
"-i",
"--ignore-checks",
dest="ignore_checks",
nargs="+",
default=[],
type=comma_separated_arg,
action="extend",
help="only check rules whose id do not match these values",
)
standard.add_argument(
"-c",
"--include-checks",
dest="include_checks",
nargs="+",
default=[],
type=comma_separated_arg,
action="extend",
help="include rules whose id match these values",
)
standard.add_argument(
"-m",
"--mandatory-checks",
dest="mandatory_checks",
nargs="+",
default=[],
type=comma_separated_arg,
action="extend",
help=(
"always check rules whose id match these values, regardless of template"
" exclusions"
),
)
standard.add_argument(
"-e",
"--include-experimental",
help="Include experimental rules",
action="store_true",
)
standard.add_argument(
"-x",
"--configure-rule",
dest="configure_rules",
nargs="+",
default={},
action=RuleConfigurationAction,
help=(
"Provide configuration for a rule. Format RuleId:key=value. Example:"
" E3012:strict=true"
),
)
standard.add_argument(
"--config-file",
dest="config_file",
help="Specify the cfnlintrc file to use",
)
standard.add_argument(
"-z",
"--custom-rules",
dest="custom_rules",
help="Allows specification of a custom rule file.",
)
advanced.add_argument(
"-o",
"--override-spec",
dest="override_spec",
help="A CloudFormation Spec override file that allows customization",
)
advanced.add_argument(
"-g",
"--build-graph",
help=(
"Creates a file in the same directory as the template that models the"
" template's resources in DOT format"
),
action="store_true",
)
advanced.add_argument(
"-s",
"--registry-schemas",
help="one or more directories of CloudFormation Registry Schemas",
action="extend",
type=comma_separated_arg,
nargs="+",
)
standard.add_argument(
"-v",
"--version",
help="Version of cfn-lint",
action="version",
version=f"%(prog)s {__version__}",
)
advanced.add_argument(
"-u",
"--update-specs",
help="Update the CloudFormation Specs",
action="store_true",
)
advanced.add_argument(
"-p",
"--patch-specs",
help="Patch the CloudFormation Specs in place",
action="store_true",
)
advanced.add_argument(
"--update-documentation", help=argparse.SUPPRESS, action="store_true"
)
advanced.add_argument(
"--update-iam-policies", help=argparse.SUPPRESS, action="store_true"
)
standard.add_argument(
"--output-file",
type=str,
default=None,
help="Writes the output to the specified file, ideal for producing reports",
)
standard.add_argument(
"--merge-configs",
default=False,
action="store_true",
help="Merges lists between configuration layers",
)
standard.add_argument(
"--non-zero-exit-code",
type=str,
default="informational",
choices=["informational", "warning", "error", "none"],
help="Exit code will be non zero from the specified rule class and higher",
)
advanced.add_argument("--force", help=argparse.SUPPRESS, action="store_true")
return parser
class TemplateArgs:
"""Per Template Args"""
def __init__(self, template_args):
self.set_template_args(template_args)
def get_template_args(self):
return self._template_args
def set_template_args(self, template):
defaults = {}
if isinstance(template, dict):
configs = template.get("Metadata", {}).get("cfn-lint", {}).get("config", {})
if isinstance(configs, dict):
for key, value in {
"ignore_checks": (list),
"regions": (list),
"append_rules": (list),
"override_spec": (str),
"custom_rules": (str),
"ignore_bad_template": (bool),
"include_checks": (list),
"configure_rules": (dict),
"include_experimental": (bool),
}.items():
if key in configs:
if isinstance(configs[key], value):
defaults[key] = configs[key]
self._template_args = defaults
template_args = property(get_template_args, set_template_args)
class ManualArgs(TypedDict, total=False):
configure_rules: dict[str, dict[str, Any]]
include_checks: list[str]
ignore_checks: list[str]
mandatory_checks: list[str]
include_experimental: bool
ignore_bad_template: bool
ignore_templates: list
merge_configs: bool
non_zero_exit_code: str
output_file: str
regions: list
# pylint: disable=too-many-public-methods
class ConfigMixIn(TemplateArgs, CliArgs, ConfigFileArgs):
"""Mixin for the Configs"""
def __init__(self, cli_args: list[str] | None = None, **kwargs: Unpack[ManualArgs]):
self._manual_args = kwargs or ManualArgs()
self._templates_to_process = False
CliArgs.__init__(self, cli_args)
# configure debug as soon as we can
TemplateArgs.__init__(self, {})
ConfigFileArgs.__init__(
self, config_file=self._get_argument_value("config_file", False, False)
)
def __repr__(self):
return format_json_string(
{
"ignore_checks": self.ignore_checks,
"include_checks": self.include_checks,
"mandatory_checks": self.mandatory_checks,
"include_experimental": self.include_experimental,
"configure_rules": self.configure_rules,
"regions": self.regions,
"ignore_bad_template": self.ignore_bad_template,
"debug": self.debug,
"info": self.info,
"format": self.format,
"templates": self.templates,
"append_rules": self.append_rules,
"override_spec": self.override_spec,
"custom_rules": self.custom_rules,
"config_file": self.config_file,
"merge_configs": self.merge_configs,
"non_zero_exit_code": self.non_zero_exit_code,
}
)
def _get_argument_value(self, arg_name, is_template, is_config_file):
cli_value = getattr(self.cli_args, arg_name)
template_value = self.template_args.get(arg_name)
file_value = self.file_args.get(arg_name)
# merge list configurations
# make sure we don't do an infinite loop so skip this check for merge_configs
if arg_name != "merge_configs":
if self.merge_configs:
# the CLI will always have an empty list when the item is a list
# we will use that to evaluate if we need to merge the lists
if isinstance(cli_value, list):
# Use a copy here, otherwise we will
# accumulate template level config
# into the cli_value which will persist between template files
result = cli_value.copy()
if isinstance(template_value, list):
result.extend(template_value)
if isinstance(file_value, list):
result.extend(file_value)
return result
# return individual items
if arg_name in self._manual_args:
return self._manual_args[arg_name]
if cli_value:
return cli_value
if template_value and is_template:
return template_value
if file_value and is_config_file:
return file_value
return cli_value
@property
def ignore_checks(self):
return self._get_argument_value("ignore_checks", True, True)
@property
def include_checks(self):
results = self._get_argument_value("include_checks", True, True)
return ["W", "E"] + results
@property
def mandatory_checks(self):
return self._get_argument_value("mandatory_checks", False, True)
@property
def include_experimental(self):
return self._get_argument_value("include_experimental", True, True)
@property
def regions(self):
results = self._get_argument_value("regions", True, True)
if not results:
default_region_env = os.environ.get("AWS_DEFAULT_REGION", "us-east-1")
return [os.environ.get("AWS_REGION", default_region_env)]
if "ALL_REGIONS" in results:
return REGIONS
return results
@property
def ignore_bad_template(self):
return self._get_argument_value("ignore_bad_template", True, True)
@property
def debug(self):
return self._get_argument_value("debug", False, False)
@property
def info(self):
return self._get_argument_value("info", False, False)
@property
def format(self):
return self._get_argument_value("format", False, True)
@property
def templates(self):
"""
Returns a list of Cloudformation templates to lint.
Order of precedence:
- Filenames provided via `-t` CLI
- Filenames specified in the config file.
- Arguments provided via `cfn-lint` CLI.
"""
all_filenames = []
cli_alt_args = self._get_argument_value("template_alt", False, False)
file_args = self._get_argument_value("templates", False, True)
cli_args = self._get_argument_value("templates", False, False)
if cli_alt_args:
filenames = cli_alt_args
elif file_args:
filenames = file_args
elif cli_args:
filenames = cli_args
else:
# No filenames found, could be piped in or be using the api.
return None
# If we're still haven't returned, we've got templates to lint.
# Build up list of templates to lint.
self.templates_to_process = True
if isinstance(filenames, str):
filenames = [filenames]
ignore_templates = self._ignore_templates()
all_filenames.extend(self._glob_filenames(filenames))
found_files = [i for i in all_filenames if i not in ignore_templates]
LOGGER.debug(
f"List of Cloudformation Templates to lint: {found_files} from {filenames}"
)
return found_files
def _ignore_templates(self):
ignore_template_args = self._get_argument_value("ignore_templates", False, True)
if ignore_template_args:
filenames = ignore_template_args
else:
return []
# if only one is specified convert it to array
if isinstance(filenames, str):
filenames = [filenames]
return self._glob_filenames(filenames)
def _glob_filenames(self, filenames: Sequence[str]) -> list[str]:
# handle different shells and Config files
# some shells don't expand * and configparser won't expand wildcards
all_filenames = []
for filename in filenames:
add_filenames = glob.glob(filename, recursive=True)
if isinstance(add_filenames, list):
all_filenames.extend(add_filenames)
else:
LOGGER.error(f"{filename} could not be processed by glob.glob")
return sorted(list(map(str, map(Path, all_filenames))))
@property
def append_rules(self):
return [_DEFAULT_RULESDIR] + self._get_argument_value(
"append_rules", False, True
)
@property
def override_spec(self):
return self._get_argument_value("override_spec", False, True)
@property
def custom_rules(self):
"""custom_rules_spec"""
return self._get_argument_value("custom_rules", False, True)
@property
def update_specs(self):
return self._get_argument_value("update_specs", False, False)
@property
def patch_specs(self):
return self._get_argument_value("patch_specs", False, False)
@property
def update_documentation(self):
return self._get_argument_value("update_documentation", False, False)
@property
def update_iam_policies(self):
return self._get_argument_value("update_iam_policies", False, False)
@property
def listrules(self):
return self._get_argument_value("listrules", False, False)
@property
def configure_rules(self):
return self._get_argument_value("configure_rules", True, True)
@property
def config_file(self):
return self._get_argument_value("config_file", False, False)
@property
def build_graph(self):
return self._get_argument_value("build_graph", False, False)
@property
def output_file(self):
return self._get_argument_value("output_file", False, True)
@property
def registry_schemas(self):
return self._get_argument_value("registry_schemas", False, True)
@property
def merge_configs(self):
return self._get_argument_value("merge_configs", True, True)
@property
def non_zero_exit_code(self):
return self._get_argument_value("non_zero_exit_code", False, False)
@property
def force(self):
return self._get_argument_value("force", False, False)
@property
def templates_to_process(self):
return self._templates_to_process
@templates_to_process.setter
def templates_to_process(self, value: bool):
self._templates_to_process = value
|