MCPcopy Create free account
hub / github.com/FastLED/FastLED / get_excludes

Method get_excludes

ci/util/dependency_loader.py:70–83  ·  view source on GitHub ↗

Get exclusion patterns for a given operation. Args: operation: Operation name Returns: List of exclusion patterns (or empty list if none)

(self, operation: str)

Source from the content-addressed store, hash-verified

68 return self.data["operations"][operation].get("globs", [])
69
70 def get_excludes(self, operation: str) -> list[str]:
71 """
72 Get exclusion patterns for a given operation.
73
74 Args:
75 operation: Operation name
76
77 Returns:
78 List of exclusion patterns (or empty list if none)
79 """
80 if operation not in self.data["operations"]:
81 return []
82
83 return self.data["operations"][operation].get("excludes", [])
84
85 def get_operation(self, operation: str) -> dict[str, Any]:
86 """

Callers 1

_get_cpp_lint_patternsFunction · 0.95

Calls 1

getMethod · 0.45

Tested by

no test coverage detected