mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-09 23:00:40 +00:00
25 lines
903 B
Python
25 lines
903 B
Python
import re
|
|
|
|
from ansiblelater.rule import RuleBase
|
|
|
|
|
|
class CheckLiteralBoolFormat(RuleBase):
|
|
rid = "ANS114"
|
|
description = "Literal bools should be consistent"
|
|
helptext = "literal bools should be written as `{bools}`"
|
|
types = ["playbook", "task", "handler", "rolevars", "hostvars", "groupvars"]
|
|
|
|
def check(self, candidate, settings):
|
|
yamllines, errors = self.get_normalized_yaml(candidate, settings)
|
|
|
|
litera_bools = re.compile(r"(?:[=!]=|:)\s*(true|false|yes|no|on|off)\s*$", re.IGNORECASE)
|
|
allowed = settings["ansible"]["literal-bools"]
|
|
|
|
if not errors:
|
|
for i, line in yamllines:
|
|
matches = litera_bools.findall(line)
|
|
if any(m not in allowed for m in matches):
|
|
errors.append(self.Error(i, self.helptext.format(bools=", ".join(allowed))))
|
|
|
|
return self.Result(candidate.path, errors)
|