2024-01-25 20:09:05 +00:00
|
|
|
from ansiblelater.rule import RuleBase
|
2021-01-30 15:52:48 +00:00
|
|
|
|
|
|
|
|
2024-01-25 20:09:05 +00:00
|
|
|
class CheckYamlHyphens(RuleBase):
|
2021-01-30 15:52:48 +00:00
|
|
|
sid = "LINT0003"
|
|
|
|
description = "YAML should use consistent number of spaces after hyphens"
|
|
|
|
types = ["playbook", "task", "handler", "rolevars", "hostvars", "groupvars", "meta"]
|
|
|
|
|
|
|
|
def check(self, candidate, settings):
|
2023-01-09 10:59:25 +00:00
|
|
|
options = f"rules: {{hyphens: {settings['yamllint']['hyphens']}}}"
|
2021-01-30 15:52:48 +00:00
|
|
|
errors = self.run_yamllint(candidate, options)
|
|
|
|
|
|
|
|
return self.Result(candidate.path, errors)
|