2024-01-25 20:09:05 +00:00
|
|
|
from ansiblelater.rule import RuleBase
|
2021-01-30 15:52:48 +00:00
|
|
|
|
|
|
|
|
2024-01-25 20:09:05 +00:00
|
|
|
class CheckYamlDocumentEnd(RuleBase):
|
2021-01-30 15:52:48 +00:00
|
|
|
sid = "LINT0009"
|
|
|
|
description = "YAML should contain document end marker"
|
|
|
|
types = ["playbook", "task", "handler", "rolevars", "hostvars", "groupvars", "meta"]
|
|
|
|
|
|
|
|
def check(self, candidate, settings):
|
2023-01-09 10:59:25 +00:00
|
|
|
options = f"rules: {{document-end: {settings['yamllint']['document-end']}}}"
|
2021-01-30 15:52:48 +00:00
|
|
|
errors = self.run_yamllint(candidate, options)
|
|
|
|
|
|
|
|
return self.Result(candidate.path, errors)
|