You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to create a python package of my organization's custom rules, which could be installed alongside cfn-lint and then referenced from the CLI and/or .cfnlintrc by import path rather than directory path.
For example, with a custom package named myrules and a module within that package named recommended:
# install via pip
pip install cfn-lint
pip install myrules
# invoke via CLI
cfn-lint -a myrules.recommended ...
# or in .cfnlintrcappend_rules:
- myrules.recommended
I'm happy to put together a PR if this is something that would be considered.
The text was updated successfully, but these errors were encountered:
I would like to create a python package of my organization's custom rules, which could be installed alongside
cfn-lint
and then referenced from the CLI and/or.cfnlintrc
by import path rather than directory path.For example, with a custom package named
myrules
and a module within that package namedrecommended
:I'm happy to put together a PR if this is something that would be considered.
The text was updated successfully, but these errors were encountered: