2023-06-28 06:19:08 +00:00
|
|
|
from typing import ClassVar
|
|
|
|
|
2021-01-30 15:52:48 +00:00
|
|
|
from ansiblelater.standard import StandardBase
|
|
|
|
|
|
|
|
|
|
|
|
class CheckYamlDocumentEnd(StandardBase):
|
|
|
|
|
|
|
|
sid = "LINT0009"
|
|
|
|
description = "YAML should contain document end marker"
|
|
|
|
version = "0.1"
|
2023-06-28 06:19:08 +00:00
|
|
|
types: ClassVar[list[str]] = [
|
|
|
|
"playbook", "task", "handler", "rolevars", "hostvars", "groupvars", "meta"
|
|
|
|
]
|
2021-01-30 15:52:48 +00:00
|
|
|
|
|
|
|
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)
|