2021-01-30 15:52:48 +00:00
|
|
|
from ansiblelater.standard import StandardBase
|
|
|
|
|
|
|
|
|
|
|
|
class CheckYamlEmptyLines(StandardBase):
|
|
|
|
|
|
|
|
sid = "LINT0001"
|
|
|
|
description = "YAML should not contain unnecessarily empty lines"
|
|
|
|
version = "0.1"
|
2023-06-28 07:14:39 +00:00
|
|
|
types = ["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: {{empty-lines: {settings['yamllint']['empty-lines']}}}"
|
2021-01-30 15:52:48 +00:00
|
|
|
errors = self.run_yamllint(candidate, options)
|
|
|
|
|
|
|
|
return self.Result(candidate.path, errors)
|