mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-09 23:00:40 +00:00
Robert Kaussow
0e197fd585
BREAKING CHANGE: The default setting for the yamllint rule `docuent-end` has been changed to `false`.
14 lines
494 B
Python
14 lines
494 B
Python
from ansiblelater.rule import RuleBase
|
|
|
|
|
|
class CheckYamlDocumentEnd(RuleBase):
|
|
rid = "YML109"
|
|
description = "YAML document end marker should match configuration"
|
|
types = ["playbook", "task", "handler", "rolevars", "hostvars", "groupvars", "meta"]
|
|
|
|
def check(self, candidate, settings):
|
|
options = f"rules: {{document-end: {settings['yamllint']['document-end']}}}"
|
|
errors = self.run_yamllint(candidate, options)
|
|
|
|
return self.Result(candidate.path, errors)
|