Problem
The missing_error_handling pattern detects fetch( via substring matching on function names like refetch(), which is not actually a fetch call.
Affected location:
app/@mobile/discover_food_trucks/DiscoverFoodTrucks.tsx:243 - void refetch() is flagged as fetch(
The regex/pattern matcher is matching fetch inside the function name refetch.
Expected Behavior
The linter should match on actual fetch( function calls, not substrings of function names.
Severity
Low - Tooling noise.
Problem
The
missing_error_handlingpattern detectsfetch(via substring matching on function names likerefetch(), which is not actually a fetch call.Affected location:
app/@mobile/discover_food_trucks/DiscoverFoodTrucks.tsx:243-void refetch()is flagged asfetch(The regex/pattern matcher is matching
fetchinside the function namerefetch.Expected Behavior
The linter should match on actual
fetch(function calls, not substrings of function names.Severity
Low - Tooling noise.