-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #308 from ansible-lockdown/devel
Final main release v1r13 - Jan24 -updated
- Loading branch information
Showing
8 changed files
with
73 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,6 @@ skip_list: | |
- '602' | ||
- '208' | ||
use_default_rules: true | ||
rulesdir: | ||
- ./rules/ | ||
verbosity: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
passlib | ||
lxml | ||
xmltodict | ||
jmespath | ||
yamllint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
"""Implementation of TagRule.""" | ||
|
||
from __future__ import annotations | ||
|
||
import re | ||
from typing import TYPE_CHECKING | ||
|
||
from ansiblelint.constants import LINE_NUMBER_KEY | ||
from ansiblelint.file_utils import Lintable | ||
from ansiblelint.rules import AnsibleLintRule, TransformMixin | ||
|
||
if TYPE_CHECKING: | ||
from ansiblelint.errors import MatchError | ||
from ansiblelint.utils import Task | ||
|
||
|
||
class TagRule(AnsibleLintRule, TransformMixin): | ||
"""Rule for checking task tags.""" | ||
|
||
id = "tag" | ||
description = ( | ||
"All task tags should have distinct names" | ||
"and templates in tags should be avoided." | ||
) | ||
severity = "MEDIUM" | ||
tags = ["idiom"] | ||
_re_templated = re.compile(r"^.*\{\{.*\}\}.*$") | ||
_ids = { | ||
"tag[no-duplicate]": "Tasks should not duplicate tags.", | ||
"tag[no-template]": "Tasks should not use Jinja templates in tags.", | ||
} | ||
|
||
def matchtask( | ||
self, | ||
task: Task, | ||
file: Lintable | None = None, | ||
) -> list[MatchError]: | ||
results: list[MatchError] = [] | ||
if file and file.failed(): | ||
return results | ||
tags = task.get("tags") | ||
if tags: | ||
if len(tags) != len(set(tags)): | ||
results.append( | ||
self.create_matcherror( | ||
message="Tasks should not duplicate tags.", | ||
lineno=task[LINE_NUMBER_KEY], | ||
tag="tag[no-duplicate]", | ||
filename=file, | ||
), | ||
) | ||
for tag in tags: | ||
if self._re_templated.match(tag): | ||
results.append( | ||
self.create_matcherror( | ||
message="Tasks should not use Jinja templates in tags.", | ||
lineno=task[LINE_NUMBER_KEY], | ||
tag="tag[no-template]", | ||
filename=file, | ||
), | ||
) | ||
break | ||
return results |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters