MCPcopy Create free account
hub / github.com/DevCloudNinjas/DevOps-Projects / check_syntax

Method check_syntax

tools/quality_gate.py:284–289  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

282 return findings
283
284 def check_syntax(self) -> list[Finding]:
285 findings: list[Finding] = []
286 findings.extend(self.check_yaml_syntax())
287 findings.extend(self.check_shell_syntax())
288 findings.extend(self.check_python_syntax())
289 return findings
290
291 def check_yaml_syntax(self) -> list[Finding]:
292 if yaml is None:

Calls 3

check_yaml_syntaxMethod · 0.95
check_shell_syntaxMethod · 0.95
check_python_syntaxMethod · 0.95