We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eef44a9 commit 47d2b56Copy full SHA for 47d2b56
devolv/__init__.py
@@ -1 +1 @@
1
-__version__ = "0.1.19"
+__version__ = "0.1.20"
devolv/iam/validator/core.py
@@ -16,12 +16,6 @@ def validate_policy_file(path: str):
16
data, raw_lines = load_policy(path)
17
findings = []
18
for rule in RULES:
19
- result = rule["check"](data, raw_lines=raw_lines)
20
- if result:
21
- finding = {
22
- "id": rule["id"],
23
- "level": rule["level"],
24
- "message": result
25
- }
26
- findings.append(finding)
+ findings.extend(rule["check"](data, raw_lines=raw_lines))
27
return findings
+
0 commit comments