mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-16 01:50:39 +00:00
Robert Kaussow
2df48598ec
BREAKING CHANGE: The option to define a `Standards` version has been removed. Every new rule that is added on upcoming releases is activated by default and will also create errors if triggered. The behavior of rules can be controlled by the existing `rules.exclude_filter` or `rules.warning_filter` options. BREAKING CHANGE: The option `rules.buildin` has been renamed to `rules.builtin`. BREAKING CHANGE: The option `rules.standards` has been renamed to `rules.dir`. BREAKING CHANGE: The option `rules.filter` has been renamed to `rules.include_filter`.
22 lines
651 B
Python
22 lines
651 B
Python
import os
|
|
|
|
from ansiblelater.rule import RuleBase
|
|
|
|
|
|
class CheckYamlFile(RuleBase):
|
|
sid = "LINT0006"
|
|
description = "Roles file should be in yaml format"
|
|
helptext = "file does not have a .yml extension"
|
|
types = ["playbook", "task", "handler"]
|
|
|
|
def check(self, candidate, settings):
|
|
errors = []
|
|
extensions = [".yml", ".yaml"]
|
|
|
|
if os.path.isfile(candidate.path) and os.path.splitext(candidate.path)[1] in extensions:
|
|
content, errors = self.get_raw_yaml(candidate, settings)
|
|
else:
|
|
errors.append(self.Error(None, self.helptext))
|
|
|
|
return self.Result(candidate.path, errors)
|