mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-01 02:40:40 +00:00
Robert Kaussow
43d7edca32
* refactor plugin system to use a class-based approach * disable some docstring linter errors and fix imports * cleanup * fix docs * add metavars to cli arguments for better helptext * add option to disable buildin rules * remove print * remove dead code
27 lines
952 B
Python
27 lines
952 B
Python
from ansiblelater.standard import StandardBase
|
|
|
|
|
|
class CheckDeprecated(StandardBase):
|
|
|
|
sid = "ANSIBLE9999"
|
|
description = "Deprecated features should not be used"
|
|
helptext = "'{old}' is deprecated and should not be used anymore. Use '{new}' instead."
|
|
version = "0.1"
|
|
types = ["playbook", "task", "handler"]
|
|
|
|
def check(self, candidate, settings):
|
|
tasks, errors = self.get_normalized_tasks(candidate, settings, full=True)
|
|
|
|
if not errors:
|
|
for task in tasks:
|
|
if "skip_ansible_lint" in (task.get("tags") or []):
|
|
errors.append(
|
|
self.Error(
|
|
task["__line__"],
|
|
self.helptext.format(
|
|
old="skip_ansible_lint", new="skip_ansible_later"
|
|
)
|
|
)
|
|
)
|
|
return self.Result(candidate.path, errors)
|