From 2504f532b8475869c66052e064fcb174f64018fc Mon Sep 17 00:00:00 2001 From: Hideki Saito Date: Wed, 8 Jul 2026 11:43:37 +0900 Subject: [PATCH] Remove meta-runtime[unsupported-version] line from the skip_list (#767) (#769) Signed-off-by: Hideki Saito --- .ansible-lint | 1 - changelogs/fragments/767_remove_unsupported_version_skip.yml | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/767_remove_unsupported_version_skip.yml 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``. +...