from typing import ClassVar from ansiblelater.standard import StandardBase class CheckYamlColons(StandardBase): sid = "LINT0005" description = "YAML should use consistent number of spaces around colons" version = "0.1" types: ClassVar[list[str]] = [ "playbook", "task", "handler", "rolevars", "hostvars", "groupvars", "meta" ] def check(self, candidate, settings): options = f"rules: {{colons: {settings['yamllint']['colons']}}}" errors = self.run_yamllint(candidate, options) return self.Result(candidate.path, errors)