diff --git a/.ansible-lint b/.ansible-lint index 42b02de..f8b5dbb 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -4,7 +4,6 @@ # SPDX-FileCopyrightText: 2024, Ansible Project skip_list: - - meta-runtime[unsupported-version] # This rule doesn't make any sense - fqcn[deep] # This rule produces false positives for files in tests/unit/plugins/action/fixtures/ - sanity[cannot-ignore] # This rule is skipped to keep backward compatibility with Python 2 diff --git a/changelogs/fragments/767_remove_unsupported_version_skip.yml b/changelogs/fragments/767_remove_unsupported_version_skip.yml new file mode 100644 index 0000000..ba5bcaf --- /dev/null +++ b/changelogs/fragments/767_remove_unsupported_version_skip.yml @@ -0,0 +1,4 @@ +--- +trivial: + - ansible-lint - Removed ``meta-runtime[unsupported-version]`` from the skip_list in ``.ansible-lint``. +...