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 CheckYamlDocumentStart(StandardBase):
|
|
|
|
|
|
|
|
sid = "LINT0004"
|
|
|
|
description = "YAML should contain document start 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-start: {settings['yamllint']['document-start']}}}"
|
2021-01-30 15:52:48 +00:00
|
|
|
errors = self.run_yamllint(candidate, options)
|
|
|
|
|
|
|
|
return self.Result(candidate.path, errors)
|