mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-09 23:00:40 +00:00
Robert Kaussow
0e197fd585
BREAKING CHANGE: The default setting for the yamllint rule `docuent-end` has been changed to `false`.
14 lines
504 B
Python
14 lines
504 B
Python
from ansiblelater.rule import RuleBase
|
|
|
|
|
|
class CheckYamlOctalValues(RuleBase):
|
|
rid = "YML110"
|
|
description = "YAML implicit/explicit octal value should match configuration"
|
|
types = ["playbook", "task", "handler", "rolevars", "hostvars", "groupvars", "meta"]
|
|
|
|
def check(self, candidate, settings):
|
|
options = f"rules: {{octal-values: {settings['yamllint']['octal-values']}}}"
|
|
errors = self.run_yamllint(candidate, options)
|
|
|
|
return self.Result(candidate.path, errors)
|