mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-10 15:20:40 +00:00
Robert Kaussow
43d7edca32
* refactor plugin system to use a class-based approach * disable some docstring linter errors and fix imports * cleanup * fix docs * add metavars to cli arguments for better helptext * add option to disable buildin rules * remove print * remove dead code
25 lines
815 B
Python
25 lines
815 B
Python
import re
|
|
|
|
from ansiblelater.standard import StandardBase
|
|
|
|
|
|
class CheckLiteralBoolFormat(StandardBase):
|
|
|
|
sid = "ANSIBLE0014"
|
|
description = "Literal bools should start with a capital letter"
|
|
helptext = "literal bools should be written as `True/False` or `yes/no`"
|
|
version = "0.1"
|
|
types = ["playbook", "task", "handler", "rolevars", "hostvars", "groupvars"]
|
|
|
|
def check(self, candidate, settings):
|
|
yamllines, errors = self.get_normalized_yaml(candidate, settings)
|
|
|
|
uppercase_bool = re.compile(r"([=!]=|:)\s*(true|false|TRUE|FALSE|Yes|No|YES|NO)\s*$")
|
|
|
|
if not errors:
|
|
for i, line in yamllines:
|
|
if uppercase_bool.findall(line):
|
|
errors.append(self.Error(i, self.helptext))
|
|
|
|
return self.Result(candidate.path, errors)
|