2024-01-25 20:40:15 +00:00
|
|
|
from ansiblelater.rule import RuleBase
|
2021-01-30 15:52:48 +00:00
|
|
|
|
|
|
|
|
2024-01-25 20:40:15 +00:00
|
|
|
class CheckYamlDocumentStart(RuleBase):
|
2024-01-27 18:56:35 +00:00
|
|
|
rid = "YML104"
|
2024-01-29 20:28:23 +00:00
|
|
|
description = "YAML document start marker should match configuration"
|
2021-01-30 15:52:48 +00:00
|
|
|
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-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)
|