mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-09 23:00:40 +00:00
14 lines
491 B
Python
14 lines
491 B
Python
from ansiblelater.rule import RuleBase
|
|
|
|
|
|
class CheckYamlIndent(RuleBase):
|
|
rid = "YML102"
|
|
description = "YAML should not contain unnecessarily empty lines"
|
|
types = ["playbook", "task", "handler", "rolevars", "hostvars", "groupvars", "meta"]
|
|
|
|
def check(self, candidate, settings):
|
|
options = f"rules: {{document-start: {settings['yamllint']['document-start']}}}"
|
|
errors = self.run_yamllint(candidate, options)
|
|
|
|
return self.Result(candidate.path, errors)
|